我尝试使用g ++命令编译我的c ++ / opengl-project。 (我需要这个,因为我想用第二个自编程序在每个目标系统上重新编译它。)
但是当我执行时:
g++ -Iinclude -Isrc $(pkg-config --cflags freetype2) -L/usr/X11R6/lib -L/usr/lib $(pkg-config --libs glew) -lglut $(pkg-config --libs glu) $(pkg-config --libs freetype2) main.cpp (some more source files) src/Vec4.cpp
我为gl / glu / glut / glew-functions获得了很多'未定义的引用',所以我猜想libs会失败:
/tmp/ccUm2dEl.o: In function `Box::render()':
Box.cpp:(.text+0x6e8): undefined reference to `glEnable'
Box.cpp:(.text+0x72c): undefined reference to `glBindTexture'
Box.cpp:(.text+0x736): undefined reference to `glBegin'
...
TextureManager.cpp:(.text+0x23b): undefined reference to `glTexParameteri'
TextureManager.cpp:(.text+0x295): undefined reference to `glTexImage2D'
collect2: ld gab 1 als Ende-Status zurück
我做了一些研究,但根据我发现的上述命令应该是正确的。 我也检查了pkg-config-calls,它们似乎也有效。 在我尝试使用g ++命令之前,我使用了Codeblocks IDE来编译它并且它有效。以下是我的设置:
在编译器设置中|其他选项:
`pkg-config --cflags freetype2`
在链接器设置|链接库:
glut
在链接器设置|其他链接器选项:
`pkg-config --libs glu`
`pkg-config --libs glew`
`pkg-config --libs freetype2`
在搜索目录|编译器:
include
src
我的系统(Ubuntu Precise):
$ uname -a
Linux andromeda 3.2.0-32-generic #51-Ubuntu SMP Wed Sep 26 21:33:09 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
$ g++ -dumpversion
4.6
glxinfo
GLX version: 1.4
OpenGL version string: 4.2.0 NVIDIA 304.43
Codeblocks-version: 10.04
感谢您的建议
答案 0 :(得分:1)
问题很可能是您以错误的顺序链接。 GNU链接器希望它的库具有相反的顺序,因此如果将链接库 last 放在命令行上,它应该会更好。