1

当我用 gitbash 和 gcc 编译东西时,有没有办法缩短我需要输入的内容?

为了编译我的 helloworld 程序,我必须输入以下内容:

gcc -o helloworld.exe helloworld.m -I C:/GNUstep/GNUstep/System/Library/Headers -L         C:/GNUstep/GNUstep/System/Library/Libraries -std=c99 -lobjc -lgnustep-base -fconstant-string-class=NSConstantString
4

1 回答 1

0

大多数人使用 Makefiles(或相关的东西,例如 CMake)来简化开发。Makefile 类似于 bash 脚本(语法也类似)。创建 Makefile 后,您可以运行make它,它完全按照您指定的方式运行。

如果您想知道如何在 Windows 上运行 Automake,请阅读以下内容:如何在 Windows 中运行 makefile?

于 2013-09-26T18:52:24.877 回答