|
|
|
|
5
|
if [ "$CC" = "gcc" ]; then sudo apt-get install gcc-4.8; fi
|
5
|
if [ "$CC" = "gcc" ]; then sudo apt-get install gcc-4.8; fi
|
6
|
if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8; fi
|
6
|
if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8; fi
|
7
|
|
7
|
|
8
|
-if [ "$CXX" = "clang++" ]; then sudo apt-get install --allow-unauthenticated clang-3.5; fi
|
|
|
|
|
8
|
+if [ "$CXX" = "clang++" ]; then sudo apt-get install --allow-unauthenticated clang-3.5 libc++-dev; fi
|
9
|
|
9
|
|
10
|
wget 'http://downloads.sourceforge.net/project/ogl-math/glm-0.9.6.3/glm-0.9.6.3.zip'
|
10
|
wget 'http://downloads.sourceforge.net/project/ogl-math/glm-0.9.6.3/glm-0.9.6.3.zip'
|
11
|
unzip glm-0.9.6.3.zip
|
11
|
unzip glm-0.9.6.3.zip
|