|
NAMEFFI::Build - Build shared libraries for use with FFIVERSIONversion 1.56SYNOPSISuse FFI::Platypus 1.00; use FFI::Build; my $build = FFI::Build->new( 'frooble', source => 'ffi/*.c', ); # $lib is an instance of FFI::Build::File::Library my $lib = $build->build; my $ffi = FFI::Platypus->new( api => 1 ); # The filename will be platform dependant, but something like libfrooble.so or frooble.dll $ffi->lib($lib->path); ... # use $ffi to attach functions in ffi/*.c DESCRIPTIONUsing libffi based FFI::Platypus is a great alternative to XS for writing library bindings for Perl. Sometimes, however, you need to bundle a little C code with your FFI module, but this has never been that easy to use. Module::Build::FFI was an early attempt to address this use case, but it uses the now out of fashion Module::Build.This module itself doesn't directly integrate with CPAN installers like ExtUtils::MakeMaker or Module::Build, but there is a light weight layer FFI::Build::MM that will allow you to easily use this module with ExtUtils::MakeMaker. If you are using Dist::Zilla as your dist builder, then there is also Dist::Zilla::Plugin::FFI::Build, which will help with the connections. There is some functional overlap with ExtUtils::CBuilder, which was in fact used by Module::Build::FFI. For this iteration I have decided not to use that module because although it will generate dynamic libraries that can sometimes be used by FFI::Platypus, it is really designed for building XS modules, and trying to coerce it into a more general solution has proved difficult in the past. Supported languages out of the box are C, C++ and Fortran. Rust is supported via a language plugin, see FFI::Platypus::Lang::Rust. CONSTRUCTORnewmy $build = FFI::Build->new($name, %options); Create an instance of this class. The $name argument is used when computing the file name for the library. The actual name will be something like "lib$name.so" or "$name.dll". The following options are supported:
METHODSdirmy $dir = $build->dir; Returns the directory where the library will be written. buildnamemy $builddir = $build->builddir; Returns the build name. This is used in computing a directory to save intermediate files like objects. For example, if you specify a file like "ffi/foo.c", then the object file will be stored in "ffi/_build/foo.o" by default. "_build" in this example (the default) is the build name. exportmy $exports = $build->export; Returns a array reference of the exported functions (Windows + Visual C++ only) filemy $file = $build->file; Returns an instance of FFI::Build::File::Library corresponding to the library being built. This is also returned by the "build" method below. platformmy $platform = $build->platform; An instance of FFI::Build::Platform, which contains information about the platform on which you are building. The default is usually reasonable. verbosemy $verbose = $build->verbose; Returns the verbose flag. cflagsmy @cflags = @{ $build->cflags }; Returns the compiler flags. cflags_Imy @cflags_I = @{ $build->cflags_I }; Returns the "-I" cflags. libsmy @libs = @{ $build->libs }; Returns the library flags. libs_Lmy @libs = @{ $build->libs }; Returns the "-L" library flags. alienmy @aliens = @{ $build->alien }; Returns a the list of aliens being used. source$build->source(@files); Add the @files to the list of source files that will be used in building the library. The format is the same as with the "source" attribute above. buildmy $lib = $build->build; This compiles the source files and links the library. Files that have already been compiled or linked may be reused without recompiling/linking if the timestamps are newer than the source files. An instance of FFI::Build::File::Library is returned which can be used to get the path to the library, which can be feed into FFI::Platypus or similar. clean$build->clean; Removes the library and intermediate files. AUTHORAuthor: Graham Ollis <plicease@cpan.org>Contributors: Bakkiaraj Murugesan (bakkiaraj) Dylan Cali (calid) pipcet Zaki Mughal (zmughal) Fitz Elliott (felliott) Vickenty Fesunov (vyf) Gregor Herrmann (gregoa) Shlomi Fish (shlomif) Damyan Ivanov Ilya Pavlov (Ilya33) Petr Písař (ppisar) Mohammad S Anwar (MANWAR) Håkon Hægland (hakonhagland, HAKONH) Meredith (merrilymeredith, MHOWARD) Diab Jerius (DJERIUS) Eric Brine (IKEGAMI) szTheory José Joaquín Atria (JJATRIA) Pete Houston (openstrike, HOUSTON) COPYRIGHT AND LICENSEThis software is copyright (c) 2015,2016,2017,2018,2019,2020 by Graham Ollis.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |