gcc -m64 -no-pie -fno-PIC -c test.c main.c
时间: 2023-06-15 21:08:38 浏览: 204
main.c
这是两个源文件 test.c 和 main.c 的编译命令,使用 gcc 编译器,使用 64 位架构,禁用了 PIE(Position Independent Executable)和 PIC(Position Independent Code)特性,分别对 test.c 和 main.c 进行编译并生成目标文件。
阅读全文
main.c