首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 其他相关 >

Makefile:1279: * mixed implicit and normal rules

2012-08-28 
Makefile:1279: *** mixed implicit and normal rules. 今天在编译busybox1.16的时候,执行make命令,报错,

Makefile:1279: *** mixed implicit and normal rules.

 今天在编译busybox1.16的时候,执行make命令,报错,错误信息:1279 “mixed implicit and normal rules”,翻译为中文:混合的和隐含普通规则。起初以为是busybox包的问题,从官网上下载了低版本1.13,报同样的错误,google后发现,是由于我的系统的make工具太新(系统:fedora14),make的旧版规则已经无法兼容新版。按照以下方式,问题得到解决:

      在makefile中将1279行代码

config %config: scripts_basic outputmakefile FORCE

改:

%config: scripts_basic outputmakefile FORCE
将1279行代码:/ %/: prepare scripts FORCE(错)
改为:%/: prepare scripts FORCE(对)即可编译通过!具体的行数请参照实际的make报错信息!

热点排行