]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Set _FILE_OFFSET_BITS to 64
authorJoel Rosdahl <joel@rosdahl.net>
Wed, 2 Sep 2020 07:51:54 +0000 (09:51 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 2 Sep 2020 08:12:13 +0000 (10:12 +0200)
This allows for operating on large files when compiled in 32-bit mode.

Fixes #649.

cmake/config.h.in

index 9e764223d6acb78f638ef6205fcca204ba98ba80..e264cfba48cc77667ece9f34c105fab1f23c8f6a 100644 (file)
 #  define _XOPEN_SOURCE_EXTENDED
 #endif
 
+// Handle large files when compiled in 32-bit mode.
+#ifndef _FILE_OFFSET_BITS
+#  define _FILE_OFFSET_BITS 64
+#endif
+
 // clang-format off
 #cmakedefine _WIN32_WINNT @_WIN32_WINNT@
 // clang-format on