QtQuick 2.0 GL error

  • 本文关键字:error GL QtQuick qml qt5
  • 更新时间 :
  • 英文 :


我目前正在进行我的第一个QtQuick 2.0项目,但每次构建项目时,我都会收到以下错误:

cannot find -lGL

仅此而已。我认为缺少的是libglib库,但我不知道必须安装哪个包才能解决这个问题。QtCreator在我的桌面上运行,Debian Wheezy 64位。我不会在我的笔记本电脑上运行LMDE 32位时出错。

编辑:最后我可以收集更多信息:

16:57:09: Starting "/usr/bin/make" 
g++ -Wl,-rpath,/opt/Qt5.1.0/5.1.0/gcc_64 -Wl,-rpath,/opt/Qt5.1.0/5.1.0/gcc_64/lib -Wl,-rpath-link,/opt/Qt5.1.0/5.1.0/gcc_64/lib -o Test main.o edgebutton.o edgetype.o qtquick2applicationviewer.o moc_qtquick2applicationviewer.o moc_edgebutton.o moc_edgetype.o   -L/opt/Qt5.1.0//5.1.0/gcc_64/lib -lQt5Quick -lQt5Declarative -lQt5Qml -lQt5Widgets -lQt5Network -lQt5Script -lQt5Gui -lQt5Core -lGL -lpthread 
/usr/bin/ld: cannot find -lGL
collect2: error: ld returned 1 exit status
make: *** [Bananarang] Error 1
16:57:09: The process "/usr/bin/make" terminated with return value 2.
Error while building/deploying of project Test(Kit: Desktop Qt 5.1.0 GCC 64bit)
During execution of step 'Make'

它不是libglib。它是libGL。它通常由台面或GPU的供应商提供。查找提供libGL.so的软件包并安装该软件包。在Debian下,它应该被称为libgl1-mesa-dev

相关内容

  • 没有找到相关文章

最新更新