【发布时间】:2014-12-03 23:27:27
【问题描述】:
我正在尝试升级我的 SH4 cpu 包。 “make”的版本是 3.82。 如果我想升级到'make' 4.0,它需要构建'guile'。 当我建立“诡计”时。它显示
$ cd guile-2.0.11
$ ./configure --prefix=/usr --disable-static --disable-error-on-warning # OK
$ make
make: -n: Command not found
GNUmakefile:123: *** invalid syntax in conditional. Stop.
GNUmakefile 第 123 行是
123 ifneq ($(word 2, $(MAKECMDGOALS)), )
124 ifneq ($(filter $(ALL_RECURSIVE_TARGETS), $(MAKECMDGOALS)), )
125 .NOTPARALLEL:
126 endif
127 endif
我想知道我是否陷入了“鸡蛋生于鸡,鸡生于蛋”的问题。
【问题讨论】:
-
请注意,gnu make 4.1 于 2014-10-05 发布,因此您可能应该升级到该版本。查看实际使用说明——它们可能表明构建问题是新版本的原因之一。