We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e8cfe commit b9bb946Copy full SHA for b9bb946
lldb/source/Host/CMakeLists.txt
@@ -1,9 +1,10 @@
1
if (APPLE AND LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY)
2
# The arpa/inet.h header used in the files here is providing a miscompiled
3
- # htonl function on macOS <= 10.15 when local submodule visibility is active.
4
- # Disabling modules in this directory until this is is fixed.
5
- # See rdar://problem/62886385
6
- remove_module_flags()
+ # htonl function on macOS < 14 when local submodule visibility is active.
+ if (CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 14.0)
+ # Disabling modules in this directory.
+ remove_module_flags()
7
+ endif()
8
endif()
9
10
macro(add_host_subdirectory group)
0 commit comments