Qt Creator 编译错误(未找到.o 文件)
我以前从未在 OS X 或使用 g++ 上进行过编译,但是在打开我的项目并尝试编译后,我收到以下错误:
../../../QtSDK/Desktop/Qt/474/gcc/include -I. -I../FATX -I. \
-F/Users/landerbrandt/QtSDK/Desktop/Qt/474/gcc/lib \
-o xMultiFileStream.o ../FATX/IO/xMultiFileStream.cpp
make: g++-4.2: No such file or directory
make: *** [xMultiFileStream.o] Error 1
不太确定这里的问题是什么,因为它在 Windows 下编译得很好(当然,使用 MSVCC )。
I've never compiled before on OS X or using g++, but after opening my project and attempting to compile I get the following error:
../../../QtSDK/Desktop/Qt/474/gcc/include -I. -I../FATX -I. \
-F/Users/landerbrandt/QtSDK/Desktop/Qt/474/gcc/lib \
-o xMultiFileStream.o ../FATX/IO/xMultiFileStream.cpp
make: g++-4.2: No such file or directory
make: *** [xMultiFileStream.o] Error 1
Not too sure what the issue is here since it compiles just fine under Windows (using MSVCC though, of course).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案在这里找到: http://developer.qt.nokia.com/forums/viewthread /12682
看来托比亚斯提出的解决方案有效。
The answer was found here: http://developer.qt.nokia.com/forums/viewthread/12682
It appears that the solution Tobias proposed worked.