GCC 編譯多個文件 (GCC Multiple File Compilation)

GCC 編譯多個文件 (GCC Multiple File Compilation)

GCC 編譯多個文件 教學與筆記。

範例程式

1
2
// show.h
void show();
1
2
3
4
5
6
7
8
// show.c
#include <stdio.h>

extern int a;

void show() {
printf("%d", a);
}
1
2
3
4
5
6
7
8
// main.c
#include "show.h"

int a = 100;

void main() {
show();
}

GCC 編譯指令

1
gcc -o test main.c show.c

GCC 編譯多個文件 (GCC Multiple File Compilation)

https://meowlucian.github.io/GCC/GCC-Multiple-File-Compilation/

Author

Meow Lucian

Posted on

2019-07-15

Updated on

2022-07-06

Licensed under

Comments