From f5079fa3ee247771f328adbeec99b695eddd0795 Mon Sep 17 00:00:00 2001 From: Arthur Eubanks Date: Wed, 19 Jul 2023 10:47:23 -0700 Subject: [PATCH] Enable compiler-rt tests on Windows Locally, disabling the fuzzer (already globally disabled) plus the ORC tests makes everything else pass. --- scripts/llvm-dependencies.yaml | 2 -- scripts/run_cmake_config.yaml | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/llvm-dependencies.yaml b/scripts/llvm-dependencies.yaml index c42f141..594f9d1 100644 --- a/scripts/llvm-dependencies.yaml +++ b/scripts/llvm-dependencies.yaml @@ -81,8 +81,6 @@ excludedProjects: - openmp # TODO: check: kuhnel has trouble with the Perl installation - cross-project-tests # test failing - check-cxxabi - # test stuck, needs to be killed manually: instrprof-multiprocess.test - - compiler-rt linux: - libcxx # has custom checks - libcxxabi # has custom checks diff --git a/scripts/run_cmake_config.yaml b/scripts/run_cmake_config.yaml index 5691d55..0945642 100644 --- a/scripts/run_cmake_config.yaml +++ b/scripts/run_cmake_config.yaml @@ -30,4 +30,5 @@ arguments: - '-D CMAKE_CXX_FLAGS=-gmlt' # Bolt https://github.com/google/llvm-premerge-checks/issues/364#issuecomment-1013952831. - '-DBOLT_CLANG_EXE=/usr/bin/clang' - windows: [] + windows: + - '-D COMPILER_RT_BUILD_ORC=OFF' # ORC tests failing, should investigate.