From 296b9d610be0c68376454d58ea553389a4a1b446 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Sun, 16 Feb 2025 07:58:45 +1100 Subject: [PATCH] only run check-llvm on linux (osx picks up wrong python) --- recipe/build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipe/build.sh b/recipe/build.sh index 2293fafd..508ba0b4 100644 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -66,10 +66,9 @@ if [[ "$CONDA_BUILD_CROSS_COMPILATION" != "1" ]]; then if [[ "$target_platform" == linux* ]]; then ln -s $(which $CC) $BUILD_PREFIX/bin/gcc + ninja -j${CPU_COUNT} check-llvm fi - ninja -j${CPU_COUNT} check-llvm - cd ../llvm/test $BUILD_PREFIX/bin/python ../../build/bin/llvm-lit -vv Transforms ExecutionEngine Analysis CodeGen/X86 fi