Chinaunix首页 | 论坛 | 博客
  • 博客访问: 17635
  • 博文数量: 6
  • 博客积分: 240
  • 博客等级: 二等列兵
  • 技术积分: 70
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-13 15:15
文章分类

全部博文(6)

文章存档

2009年(6)

我的朋友
最近访客

分类: LINUX

2009-02-03 22:39:13

转载:http://blog.chinaunix.net/u2/63991/showart_1308989.html


make[1]: *** No rule to make target `hello_world.srec', needed by `all'.  Stop.
make[1]: Leaving directory `/home/mort/src/targa/u-boot/u-boot-TOT/examples'
make: *** [examples] Error 2
的问题。可是可以在网上找到解决方法:
打开 vi examples/Makefile
  
    119 $(LIB): .depend $(LIBOBJS)
    120         $(AR) crv $@ $(LIBOBJS)
    121
    122 %:      %.o $(LIB)
    123         $(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
    124                 -o $@ -e $(<:.o=) $< $(LIB) \
    125                 -L$(gcclibdir) -lgcc
    126 %.srec: %
    127         $(OBJCOPY) -O srec $< $@ 2>/dev/null
    128
    129 %.bin:  %
    130         $(OBJCOPY) -O binary $< $@ 2>/dev/null
   
把126行和129行改为:
     %.srec: %.o
     %.bin: %.o
再make就可以了。
阅读(1501) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~