https://bugs.kde.org/show_bug.cgi?id=392223
--- Comment #3 from Sergio Martins <smart...@kde.org> --- If you want to try my steps: $ cd $ git clone https://github.com/llvm-mirror/llvm.git $ cd llvm/tools/ $ git clone https://github.com/llvm-mirror/clang.git $ cd .. $ cd projects/ $ git clone https://github.com/llvm-mirror/compiler-rt.git $ cd compiler-rt/ $ mkdir /root/llvm7/ # running with root on my docker container, change here :) $ cmake -DCMAKE_INSTALL_PREFIX=/root/llvm7 -DLLVM_INCLUDE_EXAMPLES=OFF -DLLVM_TARGETS_TO_BUILD="X86" -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release ../llvm $ make -j12 $ make install $ export PATH=/root/llvm7/bin/:$PATH $ export LD_LIBRARY_PATH=/root/llbm7/lib/:$LD_LIBRARY_PATH $ <uninstalled llvm 3.8> $ cd clazy/ $ git clean -fdx . $ git pull $ cmake -DCMAKE_INSTALL_PREFIX=/root/llvm7/ $ make && make install $ cd tests $ ./run_tests.py -- You are receiving this mail because: You are watching all bug changes.