当前位置: 首页 > 工具软件 > andLinux > 使用案例 >

linux环境下安装swig

沈畅
2023-12-01

下载pcre: pcre-8.41
下载swig :swig

1 安装 pcre

$ tar -zxvf pcre-8.41.tar.gz 
$ chmod -R 777 pcre-8.41
$ cd pcre-8.41/
$ ./configure
$ make
$ sudo make install

2 安装swig到默认目录

$ ./configure
$ make
$ sudo make install	

查看swig版本

$ swig -version

如果出现swig:error while loading shared libraries:libpcre.so.1异常,
确认是否安装pcre,否则安装pcre

如果确认安装pcre,则运行

#ldd $(which swig)

会看到

libpcre.so.1 => not found

手动添加链接:

#ln -s /usr/local/lib/libpcre.so.1 /lib

完毕后再次运行

#swig -version

可看到版本信息。

SWIG Version 3.0.11
Compiled with g++ [x86_64-pc-linux-gnu]
Configured options: +pcre
Please see http://www.swig.org for reporting bugs and further information

3 安装swig到用户指定目录

$ ./configure --prefix=/usr/local/xxx/swig
$ make
$ sudo make install

路径添加到文件,

$ vim /etc/profile (可能需要管理员权限)

在最后添加一行:PATH=/usr/local/swig2.0.9/bin:$PATH。保存后重新加载生效:

$source /etc/profile
 类似资料: