- 论坛徽章:
- 0
|
本帖最后由 beyond_touch 于 2010-09-02 09:49 编辑
这边这段汇编代码,我用gcc可以编译通过。但是用as/ld分开编译/链接就会出错.
$ make
as -g -o cpuid.o cpuid.s
ld -lc -o cpuid cpuid.o /usr/lib/crt1.o /usr/lib/crti.o
/usr/lib/crt1.o: In function `_start':
(.text+0x12): undefined reference to `__libc_csu_fini'
/usr/lib/crt1.o: In function `_start':
(.text+0x19): undefined reference to `__libc_csu_init'
make: *** [cpuid] Error 1 - .data
- buffer:
- .asciz "The Processor Vendor ID is '%s'\n\0"
- .text
- .globl main
- main:
- pushq %rbp
- movq %rsp, %rbp
- subq $32, %rsp
- movl %edi, -4(%rbp)
- movq %rdi, -16(%rbp)
- xorl %eax, %eax
- cpuid
- movl %ebx, -32(%rbp)
- movl %edx, -28(%rbp)
- movl %ecx, -24(%rbp)
- movl $0, -20(%rbp)
- leaq buffer(%rip), %rdi
- leaq -32(%rbp), %rsi
- movl $0, %eax
- call printf
- xorl %eax, %eax
- leave
- ret
复制代码- AS=as
- LD=ld
- ASFLAGS=-g
- LDFLAGS=-lc
- WRAPPERS=crt1.o crti.o
- OBJS=cpuid.o
- vpath %.o /usr/lib
- cpuid: $(OBJS) $(WRAPPERS)
- $(LD) $(LDFLAGS) -o $@ $^
- $(OBJS): %.o: %.s
- $(AS) $(ASFLAGS) -o $@ $^
- .PHONY: clean
- clean:
- rm -f cpuid *.o
复制代码 |
|