diff options
author | Luis Machado <luis.machado@arm.com> | 2022-07-26 00:17:38 +0100 |
---|---|---|
committer | Luis Machado <luis.machado@arm.com> | 2022-08-10 11:17:53 +0100 |
commit | e5f2f7d901ee735224b3a657c193f88c7ad79a07 (patch) | |
tree | 843d472a7166c9b8cd3a14e27735f85c6f892c46 /configure.ac | |
parent | d7abcbcea5ddd40a3bf28758b62f35933c59f996 (diff) | |
download | gdb-e5f2f7d901ee735224b3a657c193f88c7ad79a07.zip gdb-e5f2f7d901ee735224b3a657c193f88c7ad79a07.tar.gz gdb-e5f2f7d901ee735224b3a657c193f88c7ad79a07.tar.bz2 |
Disable year 2038 support on 32-bit hosts by default
With a recent import of gnulib, code has been pulled that tests and enables
64-bit time_t by default on 32-bit hosts that support it.
Although gdb can use the gnulib support, bfd doesn't use gnulib and currently
doesn't do these checks.
As a consequence, if we have a 32-bit host that supports 64-bit time_t, we'll
have a mismatch between gdb's notion of time_t and bfd's notion of time_t.
This will lead to mismatches in the struct stat size, leading to memory
corruption and crashes.
This patch disables the year 2038 check for now, which makes things work
reliably again.
I'd consider this a temporary fix until we have proper bfd checks for the year
2038, if it makes sense. 64-bit hosts seems to be more common these days, so
I'm not sure how important it is to have this support enabled and how soon
we want to enable it.
Thoughts?
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1651cbf..a5555a9 100644 --- a/configure.ac +++ b/configure.ac @@ -440,6 +440,18 @@ case "${host}" in ;; esac +# Default to --disable-year2038 until we can handle differences between +# projects that use gnulib (which understands year 2038) and projects that +# do not (like BFD). +AC_ARG_ENABLE(year2038, +AS_HELP_STRING([--enable-year2038], + [enable support for timestamps past the year 2038]), +ENABLE_YEAR2038=$enableval, +ENABLE_YEAR2038=no) +enable_year2038= +if test "${ENABLE_YEAR2038}" = "no" ; then + enable_year2038=no +fi AC_ARG_ENABLE(libquadmath, AS_HELP_STRING([--disable-libquadmath], @@ -3139,9 +3151,15 @@ if test "$silent" = yes; then baseargs="$baseargs --silent" tbaseargs="$tbaseargs --silent" fi + baseargs="$baseargs --disable-option-checking" tbaseargs="$tbaseargs --disable-option-checking" +if test "$enable_year2038" = no; then + baseargs="$baseargs --disable-year2038" + tbaseargs="$tbaseargs --disable-year2038" +fi + # Record and document user additions to sub configure arguments. AC_ARG_VAR([build_configargs], [additional configure arguments for build directories]) |