We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4049776 commit 9ca97f5Copy full SHA for 9ca97f5
tools/CMakeLists.txt
@@ -40,4 +40,12 @@ else()
40
llvm_add_host_executable(build-timeit timeit timeit.c)
41
endif()
42
43
-add_executable(not ${CMAKE_CURRENT_SOURCE_DIR}/not.cpp)
+# FIXME: the iOS buildbots can't build this since it uses `std::system`, but
44
+# since we don't support Fortram on the iOS bots and this utility is only used
45
+# by Fortran tests, it effectively "reverts to green", without entirely
46
+# reverting the patch.
47
+#
48
+# See: https://github.com/llvm/llvm-project/issues/77137
49
+if(TEST_SUITE_FORTRAN)
50
+ add_executable(not ${CMAKE_CURRENT_SOURCE_DIR}/not.cpp)
51
+endif()
0 commit comments