小试 Perl 调用普通.so文件 首先通过cpan安装Inline和Inlne::C,让perl支持C $sudo perl -MCPAN -e shell cpan[2]>install Inline cpan[2]>install Inline::C 然后做一个测试用的so库,如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <stdio.h> #ifdef __cplusplus extern "C" { #endif int ctest(int z); #ifdef __cplusplus } #endif |
[crayon-67000f5 […]