Makefile:431: *** mixed implicit and normal rules. Stop.
[root@EmbedSky busybox-1.16.0]# make menuconfig
Makefile:431: *** mixed implicit and normal rules. Stop.
[root@EmbedSky busybox-1.16.0]# uname -r
2.6.35.11-83.fc14.x86_64
Makefile:431: *** mixed implicit and normal rules. Stop.
[root@EmbedSky busybox-1.16.0]# uname -r
2.6.35.11-83.fc14.x86_64
看看这个怎么解决?
今天太晚了,明天继续……
以下为转载的解决方法,待测试:
今天在编译busybox1.16的时候,执行make命令,报错,错误信息:437 “mixed implicit and normal rules”,翻译为中文:混合的和隐含普通规则。起初以为是busybox包的问题,从官网上下载了低版本1.13,报同样的错误,google后发现,是由于我的系统的make工具太新(系统:fedora14),make的旧版规则已经无法兼容新版。按照以下方式,问题得到解决:
在makefile中将437行代码
config %config: scripts_basic outputmakefile FORCE改:
%config: scripts_basic outputmakefile FORCE将1288行代码:
/ %/: prepare scripts FORCE(错)
改为:
%/: prepare scripts FORCE(对)
即可编译通过!
具体的行数请参照实际的make报错信息!
原文地址:http://blog.csdn.net/chengwei05192008/archive/2010/12/29/6105386.aspx
测试结果
的确是使用的版本新了,chengwei05192008 说的很对。