- 论坛徽章:
- 0
|
用ld 链接时出现的问题
好怪啊,我的AT&T汇编的hello world
- .data
- msg:
- .ascii "Hello, world!\n" # our dear string
- len = . - msg # length of our dear string
- .text
- # .globl print_str
- # .def print_str; .scl 1; .type 32; .endef
- print_str:
- pushl %edx
- movl $len,%edx # third argument: message length(15)
- movl $msg,%ecx # second argument: pointer to message to write
- movl $1,%ebx # first argument: file handle (stdout)
- movl $4,%eax # system call number (sys_write)
- int $0x80 # call kernel
- popl %edx
- ret
- .global _start
- _start:
- call print_str
- # and exit
- movl $0,%ebx # first argument: exit code
- movl $1,%eax # system call number (sys_exit)
- int $0x80 # call kernel
复制代码
as编译没问题,但是ld链接时,如果用
ld --entry=_start -o main main.o
就没问题,但是如果用
ld --entry=_start -o main main.o -lc
也可以生成main,但是无法执行,居然提示无该文件:
- wrg@desktop:~/Coding/asm/function$ as main.S -o main.o
- wrg@desktop:~/Coding/asm/function$ ld --entry=_start -o main main.o -lc
- wrg@desktop:~/Coding/asm/function$ ls
- main main.o main.S t t.c t.S
- wrg@desktop:~/Coding/asm/function$ ./main
- bash: ./main: No such file or directory
复制代码
看看文件头,是elf文件啊,麻烦大大们帮看看咯
[ 本帖最后由 ShellEx 于 2007-6-27 17:31 编辑 ] |
|