ChinaUnix.net
相关文章推荐:

No rule to make target

在编译内核时,无论使用哪种方式都提示:make ***No rule to make target "menuconfig".stop. 原因是没有在内核源码目录下进行。例如,要编译或升级的内核解压后的目录为/usr/src/linux-2.4.24,一定要进入到该目录后使用make menuconfig命令,这样就不会提示上面的错误了。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/30204/showart_243779.html

by chenlihui_78 - Linux文档专区 - 2007-02-06 20:46:12 阅读(854) 回复(0)

相关讨论

arm@debian:~/kernel/linux-2.6.14.1$ make uImage CHK include/linux/version.h make[1]: `include/asm-arm/mach-types.h' is up to date. CHK include/linux/compile.h CHK usr/initramfs_list make[2]: *** No rule to make target `sound/oss/s3c2410_uda1341.o', needed by `sound/oss/built-in.o'. Stop. make[1]: *** [sound/oss] Error 2 make: *** [sound] Error 2 我已经在sound/oss/下makefile里加...

by vitoUNIX - 嵌入式开发 - 2008-07-30 12:55:08 阅读(2708) 回复(2)

# make bzlamge make: *** 没有规则可以创建目标“bzlamge”。 停止。 直接make的话出现下面报错信息,make menuconfig 过下面这个问题,可能是.config的问题,但是用make bzlamge就出现上面的报错信息,make mrporper也没用 ---------------------------- scripts/kconfig/conf -s arch/x86/Kconfig *** *** You have not yet configured your kernel! *** (missing kernel .config file) *** *** Please run some configurator...

by blueye025 - 内核源码 - 2013-01-26 13:20:14 阅读(3119) 回复(5)

1)用debug模式 make -d -p 输出出错的地方为: Considering target file `defprec.o)'. File `defprec.o)' does not exist. Looking for an implicit rule for `defprec.o)'. 2)在别人的机子上编译成功,相应的为 Considering target file `../../../lib/libioipsl.a(defprec.o)'. File `../../../lib/libioipsl.a(defprec.o)' does not exist. Looking for an implicit rule for `../../../lib/libioipsl.a(defprec.o)...

by green_tea789 - C/C++ - 2012-11-06 17:09:50 阅读(1129) 回复(1)

自己使用make bzImage时,出现no rule to make target kernel/bounds.c 上网搜了一下,提示如下操作 Guys, please read the thread more carefully! bounds.c is in the file /usr/src/linux-source-2.6.31.tar.bz2 (hint: This version number applies to 9.10) which is only there if you have the package linux-source installed AND extracted (see above on how to do this). Furthermore you've already been given a...

by xuxd32 - Linux系统管理 - 2011-09-16 16:17:32 阅读(3223) 回复(1)

我的源文件有: dbop.h //数据库操作的头文件 dbop.pc //数据库操作的源文件,Pro*C main.cpp //main函数,调用数据库操作函数 makefile文件内容如下: NAME=main PROC_FLAG=code=cpp ltype=none CC_FLAG=-g -Wall -L ${ORACLE_HOME}/lib -l clntsh OBJS = main.o \         dbop.o $(NAME): $(OBJS)         g++ $(CC_F...

by GodPig - C/C++ - 2008-12-23 12:48:58 阅读(16984) 回复(6)

说是简单,对我来说却不是一件简单的事。 Linux系统。我建了一个文件夹,写的.c文件全部放在这个文件里。make时出现上述错误。贴出makefile文件: all:main.o creat_frame.o destroy_frame.o creat_multimediaplay_frame.o play_music.o gcc -o all main.o creat_frame.o destroy_frame.o creat_multimediaplay_frame.o play_music.o\ `pkg-config --cflags --libs gtk+-2.0` play_music.o:play_music.c head.h gcc -c play...

by chm1988 - 嵌入式开发 - 2010-03-15 13:31:10 阅读(2488) 回复(6)

己使用make bzImage时,出现no rule to make target kernel/bounds.c 上网搜了一下,提示如下操作 Guys, please read the thread more carefully! bounds.c is in the file /usr/src/linux-source-2.6.31.tar.bz2 (hint: This version number applies to 9.10) which is only there if you have the package linux-source installed AND extracted (see above on how to do this). Furthermore you've already been given ano...

by xuxd32 - 内核源码 - 2011-09-17 17:37:17 阅读(2873) 回复(1)

在编译u-boot时出现这个错误 No rule to make target:,但是几天前编译还没问题 代码一点没有改过,所依赖的文件在制订的文件夹下也可以找得到 make[1]: Entering directory '/root/chengmo/MPC8247/u-boot-modify/lib_generic' make[1]: *** No rule to make target '/root/chengmo/u-boot-modify/include/config.h', needed by 'bzlib.o'. Stop 我想请问为什么上一个目录是MPC8247/,而makefile文件非要指定到/root/chengmo/u...

by 03013106 - 嵌入式开发 - 2010-03-05 09:15:11 阅读(2277) 回复(0)

make[2]: *** No rule to make target `drivers/input/keyboard/zevio_keypad.o', needed by `drivers/input/built-in.o'. Stop. make[1]: *** [drivers/input] Error 2 make: *** [drivers] Error 2 没有找到文件drivers/input/keyboard/zevio_keypad.c 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/19273/showart_1900008.html

by soararing - Linux文档专区 - 2009-04-14 14:00:59 阅读(3005) 回复(0)

今天整理之前的程序,把多余的界面删掉..明明改了.pro也把包含头文件的语句去掉..可总有No rule to make target .h need by .o stoped的错误... 结果,把makefile删掉重新tmake就生成新的makefile就可以了..为什么呢?makefile不是已经更新了吗?疑问. 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/35859/showart_525013.html

by kersky - Linux文档专区 - 2008-04-10 11:01:16 阅读(850) 回复(0)