当前位置: 技术问答>linux和unix
linux下编译.S汇编代码
来源: 互联网 发布时间:2015-07-16
本文导语: 请问用什么编译器? GCC? 如果内嵌汇编又怎么个步骤呢? 3Q | 如果是AT&T汇编,可以用: #as -o hello.o hello.s #ld -s -o hello hello.o | gcc -x assembler gcc -x assembler-with-cpp ...
请问用什么编译器?
GCC?
如果内嵌汇编又怎么个步骤呢?
3Q
GCC?
如果内嵌汇编又怎么个步骤呢?
3Q
|
如果是AT&T汇编,可以用:
#as -o hello.o hello.s
#ld -s -o hello hello.o
#as -o hello.o hello.s
#ld -s -o hello hello.o
|
gcc -x assembler
gcc -x assembler-with-cpp
gcc -x assembler-with-cpp
|
或者用as汇编器
|
如果是内嵌汇编,就像编译C语言程序一样编译即可