[compiler-rt] a7018e8 - [compiler-rt] Disable building LibFuzzer for WatchOS and the corresponding simulator.
Dan Liew via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 14 13:55:48 PST 2020
Author: Dan Liew
Date: 2020-02-14T13:53:54-08:00
New Revision: a7018e8a2edf05370f3b4e3cdc018e1f5bc932de
URL: https://github.com/llvm/llvm-project/commit/a7018e8a2edf05370f3b4e3cdc018e1f5bc932de
DIFF: https://github.com/llvm/llvm-project/commit/a7018e8a2edf05370f3b4e3cdc018e1f5bc932de.diff
LOG: [compiler-rt] Disable building LibFuzzer for WatchOS and the corresponding simulator.
rdar://problem/59466685
Added:
Modified:
compiler-rt/cmake/config-ix.cmake
Removed:
################################################################################
diff --git a/compiler-rt/cmake/config-ix.cmake b/compiler-rt/cmake/config-ix.cmake
index 28051dad6e54..21af345dc6bb 100644
--- a/compiler-rt/cmake/config-ix.cmake
+++ b/compiler-rt/cmake/config-ix.cmake
@@ -500,6 +500,10 @@ if(APPLE)
endforeach()
endif()
+ # Explictly disable unsupported Sanitizer configurations.
+ list(REMOVE_ITEM FUZZER_SUPPORTED_OS "watchos")
+ list(REMOVE_ITEM FUZZER_SUPPORTED_OS "watchossim")
+
# for list_intersect
include(CompilerRTUtils)
More information about the llvm-commits
mailing list