在 Windows 上链接 Objective-C 项目

发布于 2024-10-16 14:51:21 字数 386 浏览 3 评论 0原文

我已经编译了两个类(Etudiant.m)和(main.m),并且成功获得了两个.o文件(Etudiant.o)和(main.o)。 但是,当使用此命令链接时:

gcc -c -o prog -Wno-import Etudiant.o main.o -lobjc

我得到了这个:

gcc.exe : Etudiant.o : linker input file unused because linking not done

gcc.exe : main.o : linker input file unused because linking not done

任何人都可以帮助我找出如何解决链接问题吗? 提前谢谢。

i have compiled two classes (Etudiant.m) and (main.m) and i obtain successufully the two .o files (Etudiant.o) and (main.o).
However when linking with this command :

gcc -c -o prog -Wno-import Etudiant.o main.o -lobjc

i got this :

gcc.exe : Etudiant.o : linker input file unused because linking not done

gcc.exe : main.o : linker input file unused because linking not done

can anybody help me to find out how to solve linking issues ??
THX in advance.

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

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

发布评论

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

评论(1

栖竹 2024-10-23 14:51:21

不要使用-c。这告诉 gcc 前端不要执行链接。所以,而不是

 gcc -c -o prog -Wno-import Etudiant.o main.o -lobjc

仅仅做

 gcc -o prog -Wno-import Etudiant.o main.o -lobjc

Don't use -c. That tells the gcc frontend not to perform the linking. So, instead of

 gcc -c -o prog -Wno-import Etudiant.o main.o -lobjc

just do

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