- 积分
- 6155
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2017-9-11
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在安装WPS之前,要先安装三个外部库zlib,libpng,jasper
安装步骤: tar zxvf /../../..
cd /../../..
./configure
make && make install
1.zlib
我安装的最成功最顺利的就只有zlib-1.2.3.tar.gz
2.libpng
在安装libpng时我是用的1.2的版本,出现问题[libpng12.la]错误,使用1.6版本的[libpng16.la]错误
百度说是版本太高,或者是zlib安装问题
3.Jasper
值得注意的是,jasper的安装包是版本必须是1.900.1版本。我尝试过其他的1.900.29;2.0.0;2.0.14 就只有1.900.1版本安装成功。
接下来,详说一下libpng的安装问题。
使用./configure 出现:
checking whether to enable maintainer-specific portions of Makefile ... no
checking for gcc ... /use/bin/gcc
checking whether the C compiler works .... no
configure:error:in '/usr/local/wrf/libpng-1.2.50'
configure:error:C compiler cannot create executables(翻译:C编译器无法创建可执行文件)
解决方法:sudo ./configure
make && make install
/usr/local/lib/libz.a:error adding symbols:Bad valude
collect2:error:ld returned 1 exit status
make[1]:***[libpng12.la] 错误1
make:***[all] 错误2
解决方法:进入zlib目录下,make clean
sudo CFLAGS="-o3 -fPIC" ./configure
make && make install
再进入libpng目录下sudo ./configure ....成功
值得注意的是,在最开始尝试安装的时候并没有使用sudo ./configure 而是直接用的./configure。(还没有搞清sudo)
|
|