GCC && Makefile 教學 (GCC && Makefile Tutorial)

GCC && Makefile 教學 (GCC && Makefile Tutorial)

GCC 和 Makefile 教學與筆記。

說明

GNU 編譯器套裝 (GNU Compiler Collection, GCC)

安裝 MinGW (Install MinGW)

指令列表 (Command List)

語法 : gcc [option] filename

option

功能 指令
查看版本 --version
只做編譯、不做連結 -c
指定輸出檔名 -o filename

基礎編譯 (Basic Compiling)

C Example

  • 單一文件編譯:
    1
    2
    gcc -c main.c
    gcc -o test main.c

C++ Example

  • 單一文件編譯:
    1
    2
    g++ -c main.cpp
    g++ -o test main.cpp

進階基礎編譯 (Advance Compiling)

Makefile

GCC && Makefile 教學 (GCC && Makefile Tutorial)

https://meowlucian.github.io/GCC-Tutorial/

Author

Meow Lucian

Posted on

2019-07-15

Updated on

2022-07-04

Licensed under

Comments