[PATCH] D64483: [CMake] Define _FILE_OFFSET_BITS=64 on Solaris
Rainer Orth via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 30 03:33:55 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL367304: [CMake] Define _FILE_OFFSET_BITS=64 on Solaris (authored by ro, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D64483?vs=208938&id=212309#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D64483/new/
https://reviews.llvm.org/D64483
Files:
llvm/trunk/CMakeLists.txt
llvm/trunk/cmake/config-ix.cmake
Index: llvm/trunk/cmake/config-ix.cmake
===================================================================
--- llvm/trunk/cmake/config-ix.cmake
+++ llvm/trunk/cmake/config-ix.cmake
@@ -30,6 +30,12 @@
list(APPEND CMAKE_REQUIRED_DEFINITIONS "-D_LARGE_FILE_API")
endif()
+# Do checks with _FILE_OFFSET_BITS=64 on Solaris, because we will build
+# with those too.
+if (UNIX AND ${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
+ list(APPEND CMAKE_REQUIRED_DEFINITIONS "-D_FILE_OFFSET_BITS=64")
+endif()
+
# include checks
check_include_file(dlfcn.h HAVE_DLFCN_H)
check_include_file(errno.h HAVE_ERRNO_H)
Index: llvm/trunk/CMakeLists.txt
===================================================================
--- llvm/trunk/CMakeLists.txt
+++ llvm/trunk/CMakeLists.txt
@@ -833,6 +833,11 @@
add_definitions("-D_LARGE_FILE_API")
endif()
+# Build with _FILE_OFFSET_BITS=64 on Solaris to match g++ >= 9.
+if (UNIX AND ${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
+ add_definitions("-D_FILE_OFFSET_BITS=64")
+endif()
+
# Work around a broken bfd ld behavior. When linking a binary with a
# foo.so library, it will try to find any library that foo.so uses and
# check its symbols. This is wasteful (the check was done when foo.so
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64483.212309.patch
Type: text/x-patch
Size: 1251 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190730/fef7c4f4/attachment.bin>
More information about the llvm-commits
mailing list