美文网首页YLCompiler
C语言编译过程

C语言编译过程

作者: aapu | 来源:发表于2015-02-08 22:29 被阅读89次

    预处理(Pre-Processing)

    hello.c -> hello.i

    gcc -E hello.c -o hello.i

    编译(Compiling)

    hello.i -> hello.s

    gcc -S hello.i -o hello.s

    汇编(Assembling)

    hello.s -> hello.o

    gcc -c hello.s -o hello.o

    链接(Linking)

    hello.o -> hello

    gcc hello.o -o hello

    相关文章

      网友评论

        本文标题:C语言编译过程

        本文链接:https://www.haomeiwen.com/subject/adcjxttx.html