Sfoglia il codice sorgente

update the build script to support LLVM > 9

Patrick Kettner 7 anni fa
parent
commit
5d69895cb4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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