Skip to content

Commit 57755b1

Browse files
committed
[apple] workaround the swift-ci linux failure for PR bots
The swift-ci linux PR bot is failing because it's not able to build libcxx fuzzer becuase of missing libcxxabi. It shouldn't even build the fuzzer, it only tries to because of the monorepo, which has libcxxabi next to compiler-rt.
1 parent 04acb60 commit 57755b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ if(COMPILER_RT_USE_LIBCXX)
476476
endforeach()
477477
foreach(path IN ITEMS ${LLVM_MAIN_SRC_DIR}/projects/libcxxabi
478478
${LLVM_MAIN_SRC_DIR}/runtimes/libcxxabi
479-
${LLVM_MAIN_SRC_DIR}/../libcxxabi
479+
# Hide monorepo libcxxabi path for swift-ci: ${LLVM_MAIN_SRC_DIR}/../libcxxabi
480480
${LLVM_EXTERNAL_LIBCXXABI_SOURCE_DIR})
481481
if(IS_DIRECTORY ${path})
482482
set(COMPILER_RT_LIBCXXABI_PATH ${path})

0 commit comments

Comments
 (0)