在 Windows 上链接 Objective-C 项目
我已经编译了两个类(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用
-c
。这告诉 gcc 前端不要执行链接。所以,而不是仅仅做
Don't use
-c
. That tells the gcc frontend not to perform the linking. So, instead ofjust do