我是Objective-C的新手。我正在尝试使用GNUstep编译Objective-C但是它给出了错误。我试图在命令行(gcc和makefile)上编译。
No such file or directory /
excepted '>' before 'GSPredicateBlock'
…
我使用了命令行
gcc gnustep-config --objc-flags -o hello hello.m -I /GNUstep/System/Library/Headers -L /GNUstep/System/Library/Libraries -lobjc -lgnustep-base -fconstant-string-class=NSConstantString -enable-auto-import
我尝试使用makefile:
Making all for tool Hello...
Compiling file hello.m ...
hello.m:1:71 fatal error: ../../GNUstep/System/Library/Headers/Foundation/Found ation.h: No such file or directory
compilation terminated.
make[3]: *** [obj/Hello.obj/hello.m.o] Error 1
make[2]: *** [internal-tool-all_] Error 2
make[1]: *** [Hello.all.tool.variables] Error 2
make: *** [internal-all] Error 2
我搜索过谷歌,但找不到任何有用的东西。我在Windows 7上安装了gnustep-msys-system-0.28.0-setup
,gnustep-core-0.28.0-setup
和gnustep-devel-1.3.0-setup
。
答案 0 :(得分:0)
我不知道这是不是红鲱鱼,但我看到那里不应该有一个空间:
Foundation/Found ation.h
应该是:
#import <Foundation/Foundation.h>
源代码文件中的(没有空格)
显然这是编译器在这里抱怨的:
hello.m:1:71 fatal error: ../../GNUstep/System/Library/Headers/Foundation/Found ation.h: No such file or directory
删除源代码文件的import指令中的空格,然后重试。