[llvm] [flang] Set compile definitions for flang-rt build on AIX (PR #127919)

Kelvin Li via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 06:53:54 PST 2025


https://github.com/kkwli updated https://github.com/llvm/llvm-project/pull/127919

>From 558bcc96b21fe21c0d04f6972b806aab64f5cd5f Mon Sep 17 00:00:00 2001
From: Kelvin Li <kli at ca.ibm.com>
Date: Wed, 19 Feb 2025 18:00:10 -0500
Subject: [PATCH 1/2] [flang] Set flang-rt build options for AIX

---
 flang-rt/CMakeLists.txt | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/flang-rt/CMakeLists.txt b/flang-rt/CMakeLists.txt
index 50d1a5cb2a591..999318a3ed3b9 100644
--- a/flang-rt/CMakeLists.txt
+++ b/flang-rt/CMakeLists.txt
@@ -227,6 +227,12 @@ if (WIN32)
   find_compiler_rt_library(builtins FLANG_RT_BUILTINS_LIBRARY)
 endif ()
 
+# Build with _XOPEN_SOURCE on AIX to avoid errors caused by _ALL_SOURCE.
+# We need to enable the large-file API as well.
+if (UNIX AND ${CMAKE_SYSTEM_NAME} MATCHES "AIX")
+  add_compile_definitions(_XOPEN_SOURCE=700)
+  add_compile_definitions(_LARGE_FILE_API)
+endif ()
 
 # Check whether the compiler can undefine a macro using the "-U" flag.
 # Aternatively, we could use

>From b46770f6b63d4dad5b96bb740197b9a7973a7841 Mon Sep 17 00:00:00 2001
From: Kelvin Li <kkwli at users.noreply.github.com>
Date: Mon, 24 Feb 2025 09:53:46 -0500
Subject: [PATCH 2/2] Apply suggestions from code review

Co-authored-by: Michael Kruse <github at meinersbur.de>
---
 flang-rt/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flang-rt/CMakeLists.txt b/flang-rt/CMakeLists.txt
index 999318a3ed3b9..76e612aebe8ff 100644
--- a/flang-rt/CMakeLists.txt
+++ b/flang-rt/CMakeLists.txt
@@ -229,7 +229,7 @@ endif ()
 
 # Build with _XOPEN_SOURCE on AIX to avoid errors caused by _ALL_SOURCE.
 # We need to enable the large-file API as well.
-if (UNIX AND ${CMAKE_SYSTEM_NAME} MATCHES "AIX")
+if (UNIX AND CMAKE_SYSTEM_NAME MATCHES "AIX")
   add_compile_definitions(_XOPEN_SOURCE=700)
   add_compile_definitions(_LARGE_FILE_API)
 endif ()



More information about the llvm-commits mailing list