参考:
详细步骤:
下载解压perl-5.8.8,进入源码目录。
mkdir -p ~/hisin/myprogram/perl-5.8.8
./Configure -des -Dprefix=~/hisin/myprogram/perl-5.8.8
-Dusethreads
此时make,报错:
make: *** No rule to make target `<command-line>',needed by `miniperlmain.o'. Stop.
-e '/^#.*<command line>/d' \
在下面加上:
-e '/^#.*<command-line>/d' \
然后make,成功。
然后make install,报错类似:
SysV.xs:7:25: error: asm/page.h: No such file or directory",
make install
成功。
具体命令:
./Configure -des -Dprefix=~/hisin/myprogram/perl-5.8.8 -Dusethreads
vim makedepend.SH加 -e '/^#.*<command-line>/d' \
make -j
vim ext/IPC/SysV/SysV.xs去掉引用“
asm/page.h”的行
make install
原文链接:https://www.f2er.com/centos/379821.html