ExtUtils::CBuilder(3p) Perl Programmers Reference Guide
ExtUtils::CBuilder(3p) Perl Programmers Reference Guide # ExtUtils::CBuilder(3p) Perl Programmers Reference Guide NNAAMMEE # ExtUtils::CBuilder - Compile and link C code for Perl modules SSYYNNOOPPSSIISS # use ExtUtils::CBuilder; my $b = ExtUtils::CBuilder->new(%options); $obj_file = $b->compile(source => 'MyModule.c'); $lib_file = $b->link(objects => $obj_file); DDEESSCCRRIIPPTTIIOONN # This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was motivated by the "Module::Build" project, but may be useful for other purposes as well. ...