[Lldb-commits] [lldb] [lldb][AIX] Some base #if _AIX changes of a minimal lldb build (PR #120979)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 6 01:56:08 PST 2025
================
@@ -1226,7 +1226,7 @@ bool lldb_private::formatters::ObjCSELSummaryProvider(
time_t lldb_private::formatters::GetOSXEpoch() {
static time_t epoch = 0;
if (!epoch) {
-#ifndef _WIN32
+#if !defined(_WIN32) && !defined(_AIX)
----------------
DavidSpickett wrote:
Yes this is fine, opting out of this for AIX is valid.
This OSX specific thing probably shouldn't be here, but it's not done any harm so far :)
https://github.com/llvm/llvm-project/pull/120979
More information about the lldb-commits
mailing list