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 6984cfe commit e6e8252Copy full SHA for e6e8252
lldb/source/Host/CMakeLists.txt
@@ -7,6 +7,10 @@ if (APPLE AND LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY)
7
endif()
8
9
10
+if (UNIX AND ${CMAKE_SYSTEM_NAME} MATCHES "AIX")
11
+ add_definitions("-D_ALL_SOURCE")
12
+endif()
13
+
14
macro(add_host_subdirectory group)
15
list(APPEND HOST_SOURCES ${ARGN})
16
source_group(${group} FILES ${ARGN})
lldb/source/Host/common/Host.cpp
@@ -19,7 +19,6 @@
19
#include <pwd.h>
20
#include <spawn.h>
21
#include <sys/stat.h>
22
-#include <sys/syscall.h>
23
#include <sys/wait.h>
24
#include <unistd.h>
25
#endif
0 commit comments