FFI::CheckLib - Check that a library is available for FFI |
FFI::CheckLib - Check that a library is available for FFI
version 0.11
use FFI::CheckLib; check_lib_or_exit( lib => 'jpeg', symbol => 'jinit_memory_mgr' ); check_lib_or_exit( lib => [ 'iconv', 'jpeg' ] ); # or prompt for path to library and then: print "where to find jpeg library: "; my $path = <STDIN>; check_lib_or_exit( lib => 'jpeg', libpath => $path );
This module checks whether a particular dynamic library is available for FFI to use. It is modeled heavily on the Devel::CheckLib manpage, but will find dynamic libraries even when development packages are not installed. It also provides a find_lib function that will return the full path to the found dynamic library, which can be feed directly into the FFI::Platypus manpage or the FFI::Raw manpage.
Although intended mainly for FFI modules via the FFI::Platypus manpage and similar, this module does not actually use any FFI to do its detection and probing. This modules does not have any non-core dependencies on Perls 5.8-5.18. On Perl 5.20 and newer it has a configure, build and test dependency on the Module::Build manpage.
All of these take the same named parameters and are exported by default.
This will return a list of dynamic libraries, or empty list if none were found.
[version 0.05]
If called in scalar context it will return the first library found.
Must be either a string with the name of a single library or a reference
to an array of strings of library names. Depending on your platform,
CheckLib
will prepend lib
or append .dll
or .so
when
searching.
[version 0.11]
As a special case, if *
is specified then any libs found will match.
A string or array of additional paths to search for libraries.
[version 0.11]
A string or array of system paths to search for instead of letting
the FFI::CheckLib manpage determine the system path. You can set this to []
in order to not search any system paths.
A string or a list of symbol names that must be found.
A code reference used to verify a library really is the one that you want. It should take two arguments, which is the name of the library and the full path to the library pathname. It should return true if it is acceptable, and false otherwise. You can use this in conjunction with the FFI::Platypus manpage to determine if it is going to meet your needs. Example:
use FFI::CheckLib; use FFI::Platypus; my($lib) = find_lib( name => 'foo', verify => sub { my($name, $libpath) = @_; my $ffi = FFI::Platypus->new; $ffi->lib($libpath); my $f = $ffi->function('foo_version', [] => 'int'); return $f->call() >= 500; # we accept version 500 or better }, );
[version 0.11]
Recursively search for libraries in any non-system paths (those provided
via libpath
above).
This behaves exactly the same as find_lib, except that instead of returning empty list of failure it throws an exception.
This behaves exactly the same as assert_lib,
except that instead of dying, it warns (with exactly the same error
message) and exists. This is intended for use in Makefile.PL
or
Build.PL
[version 0.05]
This behaves exactly the same as find_lib, except that if the library is not found, it will call exit with an appropriate diagnostic.
[version 0.06]
This behaves exactly the same as find_lib, except that if the library is not found, it will die with an appropriate diagnostic.
This behaves exactly the same as find_lib, except that it returns true (1) on finding the appropriate libraries or false (0) otherwise.
Author: Graham Ollis <plicease@cpan.org>
Contributors:
Bakkiaraj Murugesan (bakkiaraj)
This software is copyright (c) 2014 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.
FFI::CheckLib - Check that a library is available for FFI |