Object::Pad::ExtensionBuilder(3pm) | User Contributed Perl Documentation | Object::Pad::ExtensionBuilder(3pm) |
"Object::Pad::ExtensionBuilder" - build-time support for extensions to "Object::Pad"
In Build.PL:
use Object::Pad::ExtensionBuilder; my $build = Module::Build->new) ..., configure_requires => { 'Object::Pad::ExtensionBuilder' => 0, }, ); Object::Pad::ExtensionBuilder->extend_module_build( $build ); ...
This module provides a build-time helper to assist authors writing XS modules that provide Object::Pad extensions. It prepares a Module::Build-using distribution to be able to compile it.
Object::Pad::ExtensionBuilder->write_object_pad_h
Writes the object_pad.h file to the current working directory. To cause the compiler to actually find this file, see "extra_compiler_flags".
@flags = Object::Pad::ExtensionBuilder->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 object_pad.h file.
Object::Pad::ExtensionBuilder->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>
2023-01-13 | perl v5.36.0 |