我想将我在一个目录中编写的 C 源代码编译到另一个目录中。这样可以吗?如果可以,我该如何实现?
答案1
尝试进行这个编译。
gcc file.c -o directory/myOutput
并运行它。
./directory/myOutput
如果这不起作用,请尝试编译并将输出文件移动到目录。
gcc file.c -o [compiled ouput file] & mv [compiled ouput file] [your directory]
我想将我在一个目录中编写的 C 源代码编译到另一个目录中。这样可以吗?如果可以,我该如何实现?
尝试进行这个编译。
gcc file.c -o directory/myOutput
并运行它。
./directory/myOutput
如果这不起作用,请尝试编译并将输出文件移动到目录。
gcc file.c -o [compiled ouput file] & mv [compiled ouput file] [your directory]