From fe989ed3096a401853a52b68bd16026132c07c1f Mon Sep 17 00:00:00 2001 From: Yan Titarenko Date: Sun, 8 Aug 2021 15:53:32 +0300 Subject: [PATCH] Upgrade tools for Clang 13 Looks like it is possible to link those --- .github/workflows/build-and-install.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-install.yaml b/.github/workflows/build-and-install.yaml index a141dd5..c35bb53 100644 --- a/.github/workflows/build-and-install.yaml +++ b/.github/workflows/build-and-install.yaml @@ -134,7 +134,7 @@ jobs: - name: Extracting llc's host target run: llc --version | grep CPU - name: Compile test tool, for retrieveing CPU features - run: clang -I/usr/local/include/ -I/usr/local/include/llvm-c -L/usr/lib/llvm-13/lib -lLLVM-13git -lstdc++ $GITHUB_WORKSPACE/gollvm_build_process/llvm_cpu_features_investigation.cpp + run: clang -I/usr/local/include/ -I/usr/local/include/llvm-c -L/usr/lib/llvm-13/lib -lLLVM-13 -lstdc++ $GITHUB_WORKSPACE/gollvm_build_process/llvm_cpu_features_investigation.cpp - name: Run the CPU feature extractor run: export LD_LIBRARY_PATH=/usr/local/lib && ./a.out - name: Trying to check if we could install Ninja