From 1649897ebbf27a500ecc9b08815090ffd3862d3e Mon Sep 17 00:00:00 2001 From: joern274 Date: Wed, 15 May 2024 13:49:21 +0200 Subject: [PATCH] Debug statements to search for missing clang compiler --- .github/workflows/macOS.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index 99e1088e042..0820a4b2783 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -90,7 +90,12 @@ jobs: mkdir -p build cd build export PATH="/usr/local/opt/qt@5/bin:$PATH" - ls .. + brew ls llvm@14 + ls -l /usr/local + ls -l /usr/local/opt + ls -l /usr/local/opt/llvm@14 + ls -l /usr/local/opt/llvm@14/bin + ls -l /usr/local/opt/llvm@14/bin/clang cmake -G Ninja .. -DQt5_DIR=/usr/local/opt/qt@5/lib/cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_ALL_PLUGINS=ON -DBUILD_TESTS=ON -DPL_GUI=ON -DCMAKE_C_COMPILER=/usr/local/opt/llvm@14/bin/clang -DCMAKE_CXX_COMPILER=/usr/local/opt/llvm@14/bin/clang++ env: LDFLAGS: "-L/usr/local/opt/qt@5/lib -L/usr/local/opt/llvm@14/lib -Wl,-rpath,/usr/local/opt/llvm@14/lib"