aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/TestFileOffsetBits.c
diff options
context:
space:
mode:
authorBalint Reczey <balint@balintreczey.hu>2016-06-14 22:29:34 -0700
committerAnders Broman <a.broman58@gmail.com>2016-06-16 04:02:43 +0000
commitf749a64280051663f04fa5dfd11a50e3d4ce4e77 (patch)
tree377d601807c970203e827ae40be7beb8bf6923d9 /cmake/TestFileOffsetBits.c
parent4962ea601f6ee08a4f774750dc37bac2fd92c2ca (diff)
cmake: Detect proper large file defines even with -Wno-error
Without this change large file support was detected as available even when it was not without additional flags on 32 architectures. As a result mergecap and other programs are built without large file support causing mergecap not being able to write files bigger than 2GB on i386 systems. This used to work properly with autotools builds, but not with CMake ones. Change-Id: Ibfd043342b2a48310d2ac9d760e6404a701c5808 Reviewed-on: https://code.wireshark.org/review/15937 Petri-Dish: Balint Reczey <balint@balintreczey.hu> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Balint Reczey <balint@balintreczey.hu>
Diffstat (limited to 'cmake/TestFileOffsetBits.c')
-rw-r--r--cmake/TestFileOffsetBits.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/cmake/TestFileOffsetBits.c b/cmake/TestFileOffsetBits.c
index ac0e51e225..882abb4cfc 100644
--- a/cmake/TestFileOffsetBits.c
+++ b/cmake/TestFileOffsetBits.c
@@ -8,11 +8,17 @@
#include <sys/types.h>
+/* detect failure even with -Wno-error on command line */
+#pragma GCC diagnostic error "-Werror"
+
int main(int argc, char **argv)
{
/* Cause a compile-time error if off_t is smaller than 64 bits */
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
int off_t_is_large[ (LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1 ];
+ /* silence unused errors */
+ (void)off_t_is_large;
+ (void)argc;
+ (void)argv;
return 0;
}
-