[Lldb-commits] [lldb] [lldb][AIX] Taking Linux Host Info header's base for AIX (PR #106910)
Dhruv Srivastava via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 20 04:54:00 PST 2025
================
@@ -11,11 +11,11 @@
#include "lldb/lldb-defines.h"
-#if defined(_MSC_VER)
+#if defined(_MSC_VER) || defined(__AIX__)
#define REPLACE_GETOPT
#define REPLACE_GETOPT_LONG
#endif
-#if defined(_MSC_VER) || defined(__NetBSD__)
+#if defined(_MSC_VER) || defined(__NetBSD__) || defined(__AIX__)
----------------
DhruvSrivastavaX wrote:
Merged
https://github.com/llvm/llvm-project/pull/106910
More information about the lldb-commits
mailing list