0

我是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

4

1 回答 1

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

删除源代码文件的导入指令中的该空间,然后重试。

于 2015-04-30T18:43:18.457 回答