2013-06-22 40 views
0

我試圖在我的kubuntu 64b上啓動一個測試opengl。 Opengl,glew和freeglut已經安裝,但是當我編譯它說沒有找到過剩。找不到-lglut,但安裝了freeglut3-dev

CLEAN SUCCESSFUL (total time: 52ms) 

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf 
make[1]: Entering directory `/home/rxp/NetBeansProjects/Cpptest' 
"/usr/bin/make" -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux-x86/cpptest 
make[2]: Entering directory `/home/rxp/NetBeansProjects/Cpptest' 
mkdir -p build/Debug/GNU-Linux-x86 
rm -f build/Debug/GNU-Linux-x86/main.o.d 
g++ -c -g -I../oglpg-8th-edition/include -MMD -MP -MF build/Debug/GNU-Linux-x86/main.o.d -o build/Debug/GNU-Linux-x86/main.o main.cpp 
mkdir -p dist/Debug/GNU-Linux-x86 
g++  -o dist/Debug/GNU-Linux-x86/cpptest build/Debug/GNU-Linux-x86/main.o -L../oglpg-8th-edition/lib -lGL -lGLEW -lGLU -lGLUT 
/usr/bin/ld: cannot find -lGLUT 
collect2: error: ld returned 1 exit status 
make[2]: *** [dist/Debug/GNU-Linux-x86/cpptest] Error 1 
make[2]: Leaving directory `/home/rxp/NetBeansProjects/Cpptest' 
make[1]: *** [.build-conf] Error 2 
make[1]: Leaving directory `/home/rxp/NetBeansProjects/Cpptest' 
make: *** [.build-impl] Error 2 


BUILD FAILED (exit value 2, total time: 358ms) 

你能幫助我嗎?

回答

2

您正在使用-lGLUT。請注意,這些庫是區分大小寫的,因此您需要使用-lglut。 在構建命令中,庫應該以這種方式鏈接:

-lGL -lGLEW -lGLU -lglut