Skip to content

Commit 80d48df

Browse files
Adding support for AIX in HostInfo section
1 parent e3e26dc commit 80d48df

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/include/lldb/Host/HostInfo.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@
5555
#elif defined(__APPLE__)
5656
#include "lldb/Host/macosx/HostInfoMacOSX.h"
5757
#define HOST_INFO_TYPE HostInfoMacOSX
58+
#elif defined(_AIX)
59+
#include "lldb/Host/aix/HostInfoAIX.h"
60+
#define HOST_INFO_TYPE HostInfoAIX
5861
#else
5962
#include "lldb/Host/posix/HostInfoPosix.h"
6063
#define HOST_INFO_TYPE HostInfoPosix

0 commit comments

Comments
 (0)