XS::Parse::Sublike::Builder(3pm) | User Contributed Perl Documentation | XS::Parse::Sublike::Builder(3pm) |
"XS::Parse::Sublike::Builder" - build-time support for "XS::Parse::Sublike"
In Build.PL:
use XS::Parse::Sublike::Builder; my $build = Module::Build->new( ..., configure_requires => { ... 'XS::Parse::Sublike::Builder' => 0, } ); XS::Parse::Sublike::Builder->extend_module_build( $build ); ...
This module provides a build-time helper to assist authors writing XS modules that use XS::Parse::Sublike. It prepares a Module::Build-using distribution to be able to make use of "XS::Parse::Sublike".
XS::Parse::Sublike::Builder->write_XSParseSublike_h
Writes the XSParseSublike.h file to the current working directory. To cause the compiler to actually find this file, see "extra_compiler_flags".
@flags = XS::Parse::Sublike::Builder->extra_compiler_flags
Returns a list of extra flags that the build scripts should add to the compiler invocation. This enables the C compiler to find the XSParseSublike.h file.
XS::Parse::Sublike::Builder->extend_module_build( $build )
A convenient shortcut for performing all the tasks necessary to make a Module::Build-based distribution use the helper.
Paul Evans <leonerd@leonerd.org.uk>
2021-01-23 | perl v5.32.0 |