Browse Source

Try again with glbinding master

Thomas Buck 9 years ago
parent
commit
4e0e566d54
1 changed files with 8 additions and 4 deletions
  1. 8
    4
      cmake/travis_script_linux.sh

+ 8
- 4
cmake/travis_script_linux.sh View File

@@ -7,12 +7,16 @@ if [ "$CC" = "clang" ]; then export CC="clang-3.5"; fi
7 7
 if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.5"; fi
8 8
 
9 9
 # Need to build latest glbinding from source
10
-GLBVER=`curl https://api.github.com/repos/hpicgs/glbinding/releases/latest | grep -m1 tag_name | cut -d\" -f4`
11
-curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
12
-cd glbinding-${GLBVER#v}
10
+#GLBVER=`curl https://api.github.com/repos/hpicgs/glbinding/releases/latest | grep -m1 tag_name | cut -d\" -f4`
11
+#curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
12
+#cd glbinding-${GLBVER#v}
13 13
 
14 14
 # Hacky fix to allow building glbinding with clang on Linux
15
-sed -i 's/  -Werror/  /g' cmake/PlatformLinuxGCC.cmake
15
+#sed -i 's/  -Werror/  /g' cmake/PlatformLinuxGCC.cmake
16
+
17
+# Try fix in glbinding master
18
+git clone https://github.com/hpicgs/glbinding.git
19
+cd glbinding
16 20
 
17 21
 mkdir build
18 22
 cd build

Loading…
Cancel
Save