Skip to content
Snippets Groups Projects
Commit ed699537 authored by Teemu Ikonen's avatar Teemu Ikonen Committed by Adrien Béraud
Browse files

Build with _LARGEFILE_SOURCE _FILE_OFFSET_BITS=64 on Linux.

Add -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 to CFLAGS and CXXFLAGS
on Linux platforms, except on Android.

Makes the build not fail in 32-bit linux.

Change-Id: I31358b69b2bf0a99b03d148fbc9f0a3a235d9741
parent d2f1f81c
Branches
Tags
No related merge requests found
......@@ -134,6 +134,12 @@ AS_IF([test "$SYS" = linux],[
])
AM_CONDITIONAL(HAVE_ANDROID, test "${HAVE_ANDROID}" = "1")
AS_IF([test "$SYS" = linux && test "${HAVE_ANDROID}" != "1"],[
CFLAGS="${CFLAGS} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
CXXFLAGS="${CXXFLAGS} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
],[
])
dnl override platform specific check for dependent libraries
dnl otherwise libtool linking of shared libraries will
dnl fail on anything other than pass_all.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment