gcc是linux下一款c编译器,比较强悍。
gcc -E test.c -o test.i(对test文件预处理)
gcc -S test.s -o test.s(生成汇编)
gcc -C test.s -o test.o(生成目标文件)
gcc -o test test.o(连接目标文件)
linux下简单使用gcc
最新推荐文章于 2024-09-27 13:56:41 发布
gcc是linux下一款c编译器,比较强悍。
gcc -E test.c -o test.i(对test文件预处理)
gcc -S test.s -o test.s(生成汇编)
gcc -C test.s -o test.o(生成目标文件)
gcc -o test test.o(连接目标文件)