我无法使用 Windows 7 在 GNUStep 中编译 Objective-C

发布于 2024-12-17 05:58:00 字数 623 浏览 2 评论 0 原文

我正在尝试使用 Windows 7 在 GNUStep 中编译以下简单的 Objective-C 代码。

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

        NSLog (@"hello world");
        [pool drain];
        return 0;
}

我使用以下命令行对其进行编译:

$ gcc `gnustep-config --objc-flags` -L /GNUstep/System/Library/Libraries hello.m -o hello -lgnustep-base -lobjc

它无法编译,并且出现以下错误:

sh:gcc:找不到命令

I am trying to compile the following simple Objective-C code in GNUStep with Windows 7.

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

        NSLog (@"hello world");
        [pool drain];
        return 0;
}

I compile it using the following command line:

$ gcc `gnustep-config --objc-flags` -L /GNUstep/System/Library/Libraries hello.m -o hello -lgnustep-base -lobjc

It doesn't compile, and I get the following error:

sh: gcc : command not found

screenshot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼波传意 2024-12-24 05:58:00

required software elements

你必须安装上述所有组件,然后你就可以使用foundantion.h

required software components

you have to install all the above components then you are good to go u can use foundantion.h

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文