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 ae212c4 commit e0d826aCopy full SHA for e0d826a
scripts/buildIGC.sh
@@ -81,6 +81,11 @@ echo "[Build Status] LLVM_VERSION_PREFERRED = $LLVM_VERSION_PREFERRED"
81
82
echo "[Build Status] Prepare install OpenCL Clang"
83
dpkg -i ./igc-official-release/*.deb
84
+if [ -f "/usr/local/lib/libopencl-clang2.so" ] && [ ! -f "/usr/local/lib/libopencl-clang.so" ]; then
85
+ # Symlink to a library name CMake is set up to handle until either
86
+ # CMake is updated or the library name is changed back.
87
+ ln -s /usr/local/lib/libopencl-clang2.so /usr/local/lib/libopencl-clang.so
88
+fi
89
echo "[Build Status] OpenCL Clang INSTALLED"
90
91
0 commit comments