在ubuntu下,编译某一源程序时,有下记ErrorMessage
--------
>>> Generating Features.mak.
Sequence (?<\...) not recognized in regex; marked by <-- HERE in m//+|(?<\ <-- HERE !/)$/ at -e line 1.
Sequence (?<\...) not recognized in regex; marked by <-- HERE in m//+|(?<\ <-- HERE !/)$/ at -e line 1.
--------
执行某一语句时,其正则表达式部分,未被正确识别。故报错。
查看,错误发生目录下的Makefile,确定当下记语句执行时,错误发生。
DM_TOP_DIR = $(shell perl -e '$$a="$(DM_TOP_DIR_ABS)";$$a =~ s=/+|(?<\!/)$$=/=g;$$_="${PWD}";s/$$a//&&s|[^/]+|..|g&&print')
即perl -e 的后续正则表达式未被正确识别,而报错。
$ perl -v 或 perl -V
ubuntu9.10发行版提供的perl的版本是5.10.0
其他能够正常编译的发行版(vine 4.2)提供的是perl的版本是5.8.6
所以,从perl.org下载5.8.9的源码包,编译安装后。(降级)
该程序最终正确编译成功。
阅读(780) | 评论(0) | 转发(0) |