我正在尝试从git clone https://github.com/nigels-com/glew.git
根据网站,我可以使用环境变量GLEW_DEST
修改安装路径,所以我做的是
export GLEW_DEST=/usr/local/glew
make extensions
make
但编译显示以下错误
ld: dylib lib/libGLEW.dylib missing LC_ID_DYLIB load command file 'lib/libGLEW.dylib' for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [bin/glewinfo] Error 1
有人可以帮助找出问题所在吗?
答案 0 :(得分:1)
我没有运气使用提供的Makefile来构建glew。 Hoewever,有一个很有用的CMakefileLists。为了使用cmake构建glew,您可以在glew的github中检查this issue。
最后,要将其安装在所需的路径中,请不要忘记将-DCMAKE_INSTALL_PREFIX=<somepath>
添加到cmake命令。