How do I compile the asm generated by GCC?

前端 未结 7 2007
南方客
南方客 2020-12-04 06:18

I\'m playing around with some asm code, and something is bothering me.

I compile this:

#include 

int main(int argc, char** argv){
  p         


        
7条回答
  •  执笔经年
    2020-12-04 07:05

    You can use GAS, which is gcc's backend assembler:

    http://linux.die.net/man/1/as

提交回复
热议问题