Skip to content

Commit

Permalink
[lldb][AIX] Added support for AIX in HostInfo section (llvm#122301)
Browse files Browse the repository at this point in the history
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
llvm#101657
2. The complete changes for porting are present in this draft PR:
llvm#102601
Added support for AIX in HostInfo section

Review Request : @DavidSpickett @labath @DhruvSrivastavaX
  • Loading branch information
Lakshmi-Surekha authored and BaiXilin committed Jan 12, 2025
1 parent 5fc97eb commit 2a2be73
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lldb/include/lldb/Host/HostInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@
#elif defined(__APPLE__)
#include "lldb/Host/macosx/HostInfoMacOSX.h"
#define HOST_INFO_TYPE HostInfoMacOSX
#elif defined(_AIX)
#include "lldb/Host/aix/HostInfoAIX.h"
#define HOST_INFO_TYPE HostInfoAIX
#else
#include "lldb/Host/posix/HostInfoPosix.h"
#define HOST_INFO_TYPE HostInfoPosix
Expand Down

0 comments on commit 2a2be73

Please sign in to comment.