gpt4 book ai didi

c++ - 找不到 -lglut 但已安装 freeglut3-dev

转载 作者:行者123 更新时间:2023-11-28 03:14:46 25 4
gpt4 key购买 nike

我正在尝试在我的 kubuntu 64b 上启动 opengl 测试。安装了 Opengl、glew 和 freeglut,但是当我编译时它说找不到 glut。

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)

你能帮帮我吗?

最佳答案

您正在使用 -lGLUT。请注意,这些库区分大小写,因此您需要改用 -​​lglut。在构建命令中,库应该以这种方式链接:

-lGL -lGLEW -lGLU -lglut

关于c++ - 找不到 -lglut 但已安装 freeglut3-dev,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17252326/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com