问题描述
- ubuntu64位qmake出来的makefile文件出了问题
-
**/usr/bin/ld: skipping incompatible /opt/qt/5.2.0/gcc/lib/libQt5Widgets.so when searching for -lQt5Widgets
/usr/bin/ld: cannot find -lQt5Widgets/usr/bin/ld: skipping incompatible /opt/qt/5.2.0/gcc/lib/libQt5Gui.so when searching for -lQt5Gui
/usr/bin/ld: cannot find -lQt5Gui/usr/bin/ld: skipping incompatible /opt/qt/5.2.0/gcc/lib/libQt5Core.so when searching for -lQt5Core
/usr/bin/ld: cannot find -lQt5Core**提示出错目录看了一下 都有这些.so文件 为何会出错?? 听说要加-m32 不知道加在哪里
makefile前几条也贴出来吧。
CC = gcc
CXX = g++
DEFINES = -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB
CFLAGS = -pipe -O2 -Wall -W -D_REENTRANT -fPIE $(DEFINES)
CXXFLAGS = -pipe -O2 -Wall -W -D_REENTRANT -fPIE $(DEFINES)
INCPATH = -I/opt/qt/5.2.0/gcc/mkspecs/linux-g++ -I. -I/opt/qt/5.2.0/gcc/include -I/opt/qt/5.2.0/gcc/include/QtWidgets -I/opt/qt/5.2.0/gcc/include/QtGui -I/opt/qt/5.2.0/gcc/include/QtCore -I. -I.
19 LINK = g++
20 LFLAGS = -Wl,-O1 -Wl,-rpath,/opt/qt/5.2.0/gcc -Wl,-rpath,/opt/qt/5.2.
0/gcc/lib
21 LIBS = $(SUBLIBS) -L/opt/qt/5.2.0/gcc/lib -lQt5Widgets -lQt5Gui -lQ
t5Core -lGL -lpthread
22 AR = ar cqs
23 RANLIB =
24 QMAKE = /usr/lib/x86_64-linux-gnu/qt4/bin/qmake请大牛指点迷津
解决方案
64位os,你应该用64位的qt库文件。你的是32位的。
解决方案二:
配置文件出问题了 建议去修改出错的脚本
解决方案三:
我的.profie 文件 **PATH="$PATH:$HOME/bin:.:/opt/qt/5.2.0/gcc/bin" **
是这个错了么?
解决方案四:
建议去修改出错的脚本