使用Gitbash和GCC的Windows的Objective-C

时间:2013-09-26 18:47:25

标签: objective-c windows gcc

当我用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

1 个答案:

答案 0 :(得分:0)

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

如果您想知道如何在Windows上运行Automake,请阅读:How to run a makefile in Windows?