[compiler-rt] Disable building LibFuzzer for WatchOS and the corresponding simulator.
authorDan Liew <dan@su-root.co.uk>
Fri, 14 Feb 2020 19:43:35 +0000 (11:43 -0800)
committerDan Liew <dan@su-root.co.uk>
Fri, 14 Feb 2020 21:53:54 +0000 (13:53 -0800)
rdar://problem/59466685

compiler-rt/cmake/config-ix.cmake

index 28051da..21af345 100644 (file)
@@ -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)