Skip to content

Commit b1893ca

Browse files
[lldb][AIX] Added support for AIX in HostInfo section (#122301)
This PR is in reference to porting LLDB on AIX. Link to discussions on llvm discourse and github: 1. https://discourse.llvm.org/t/port-lldb-to-ibm-aix/80640 #101657 2. The complete changes for porting are present in this draft PR: #102601 Added support for AIX in HostInfo section Review Request : @DavidSpickett @labath @DhruvSrivastavaX
1 parent 9190e1c commit b1893ca

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)