FFI::Build(3pm) | User Contributed Perl Documentation | FFI::Build(3pm) |
FFI::Build - Build shared libraries for use with FFI
version 2.05
use FFI::Platypus 2.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 => 2 ); # 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
Using 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.
my $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:
If the environment variable "V" is set to a true value then the verbosity will be set to 2 regardless of what is passed in.
my $dir = $build->dir;
Returns the directory where the library will be written.
my $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.
my $exports = $build->export;
Returns a array reference of the exported functions (Windows + Visual C++ only)
my $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.
my $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.
my $verbose = $build->verbose;
Returns the verbose flag.
my @cflags = @{ $build->cflags };
Returns the compiler flags.
my @cflags_I = @{ $build->cflags_I };
Returns the "-I" cflags.
my @libs = @{ $build->libs };
Returns the library flags.
my @libs = @{ $build->libs };
Returns the "-L" library flags.
my @aliens = @{ $build->alien };
Returns a the list of aliens being used.
$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.
my $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.
$build->clean;
Removes the library and intermediate files.
Author: 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)
This software is copyright (c) 2015-2022 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.
2023-01-15 | perl v5.36.0 |