• 2022-06-17
    需要将hello.c文件编译成可供分析的链接库文件,需要用到以下哪条指令实现。
    A: gcc -E hello.c -o hello.i
    B: gcc -S hello.c -o hello.s
    C: gcc -S hello.c -o hello.o
    D: gcc -S hello.c -o main.exe