How can I access .a library files in Perl?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Convert your static library to a dynamic one, then use the usual ways to load it: Conversion steps (not fully tested): |
|||||
|
access? Load? Link? List objects/functions? – Dummy00001 Sep 17 '10 at 9:59my $lib = "libname.a"; print "Accessed $lib\n" if -f $lib;counts? – Jonathan Leffler Sep 17 '10 at 13:03