Przeglądaj źródła

update the build script to support LLVM > 9

Patrick Kettner 7 lat temu
rodzic
commit
6ed4bab072
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      build.sh

+ 1 - 1
build.sh

@@ -546,7 +546,7 @@ else
 fi
 
 # check clang version (min required 3.7)
-VERSION=$($CLANG_PATH --version | grep "version [0-9]*\.[0-9]*" --o -i | grep "[0-9]\.[0-9]*" --o)
+VERSION=$($CLANG_PATH --version | grep "version [0-9]*\.[0-9]*" --o -i | grep "[0-9]*\.[0-9]*" --o)
 VERSION=${VERSION/./}
 
 if [[ $VERSION -lt 37 ]]; then