免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3407 | 回复: 1
打印 上一主题 下一主题

再问boot0.s。。。它的makefile文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-04-06 13:32 |只看该作者 |倒序浏览
  1. ORG=        0x600

  2. boot0: boot0.o
  3. .if ${OBJFORMAT} == aout
  4.         ${LD} -N -s -T ${ORG} -o boot0.out boot0.o
  5.         dd if=boot0.out of=${.TARGET} ibs=32 skip=1
  6. .else
  7.         ${LD} -N -e start -Ttext ${ORG} -o boot0.out boot0.o
  8.         objcopy -S -O binary boot0.out ${.TARGET}
  9. .endif
复制代码


连接时,给ld带了个-T选项,并且将ORG作为参数。
看意思这应该就是所谓的“重定位”了。可是我查ld的手册,-T选项是用来指定一个make脚本的,不是重定位的意思。而且我在自己上用-T 0x600来调用ld也报语法错,这是怎么回事呢?

论坛徽章:
0
2 [报告]
发表于 2006-04-06 13:52 |只看该作者
原帖由 wellbye 于 2006-4-6 13:32 发表
[code]ORG=        0x600

boot0: boot0.o
.if ${OBJFORMAT} == aout
        ${LD} -N -s -T ${ORG} -o boot0.out boot0.o
        dd if=boot0.out of=${.TARGET} ibs=32 skip=1
.else
        ${LD} -N -e start -Ttext ${ORG} -o b ...



man ld
       --section-start sectionname=org
           Locate  a  section in the output file at the absolute address given
           by org.  You may use this option as  many  times  as  necessary  to
           locate multiple sections in the command line.  org must be a single
           hexadecimal integer; for compatibility with other linkers, you  may
           omit  the  leading  0x  usually associated with hexadecimal values.
           Note: there should be  no  white  space  between  sectionname,  the
           equals sign (``=''), and org.

       -Tbss org
       -Tdata org
       -Ttext org
           Same  as  --section-start,  with  ".bss", ".data" or ".text" as the
           sectionname.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP