We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6bd68a commit e1f0dcdCopy full SHA for e1f0dcd
.travis.yml
@@ -33,7 +33,9 @@ addons:
33
34
install:
35
- git clone https://github.com/KhronosGroup/SPIRV-LLVM-Translator.git -b llvm_release_80 spirv-llvm-translator
36
- - mkdir spirv-llvm-translator/build && cd spirv-llvm-translator/build
+ - cd spirv-llvm-translator
37
+ - for patch in `ls ../patches/spirv/*.patch`; do echo $patch; git apply $patch; done
38
+ - mkdir build && cd build
39
- cmake .. -DCMAKE_INSTALL_PREFIX=./install -DBUILD_SHARED_LIBS=ON -DLLVM_BUILD_TOOLS=ON -DCMAKE_BUILD_TYPE=${BUILD_TYPE}
40
- make -j`nproc` && make install
41
- cd ../../
0 commit comments