nipy / mindboggle

Automated anatomical brain label/shape analysis software (+ website)
http://mindboggle.info
Other
146 stars 54 forks source link

Linux install: libGLU.so error during C++ compilation #70

Closed binarybottle closed 8 years ago

binarybottle commented 8 years ago

When trying to compile the C++ code on linux:

"No rule to make target `/usr/lib/x86_64-linux-gnu/libGLU.so'"

binarybottle commented 8 years ago

To avoid the error, I followed the advice on http://techtidings.blogspot.com/2012/01/problem-with-libglso-on-64-bit-ubuntu.html and added the following to the setup_mindboggle_vm script:

if [ $OS = "linux" ]; then mkdir /usr/lib64 ln -s /usr/lib/x86_64-linux-gnu/libGLU.so.1 /usr/lib64/libGLU.so fi