build: add test for 64-bit time support
authorMichael Pratt <mcpratt@pm.me>
Tue, 25 Jun 2024 05:48:45 +0000 (01:48 -0400)
committerRobert Marko <robimarko@gmail.com>
Thu, 27 Jun 2024 07:31:53 +0000 (09:31 +0200)
commit39e8ef33bfd9cf52f84957f0212dbc2f3e10bece
treeeadc61eccf84ea3df2951ad7de24f12c59d91ce1
parentf637cf5ef73bbecaf6183e5c416e3043a5f1e202
build: add test for 64-bit time support

Several GNU tools such as tar, coreutils, and findutils
now build with support for 64-bit time by default
and otherwise require reconfiguring with a flag
--disable-year2038 in order to build without 64-bit time.

Some standard C libraries, for example,
certain older versions of glibc such as 2.31
have large file support but not long time bits support:

  checking for ... option to enable large file support... -D_FILE_OFFSET_BITS=64
  checking for ... option for timestamps after 2038... support not detected

This test using C code taken from largefile.m4 in gnulib
uses math and casting to check for overflow
with a macro and array pair that can only be defined
when 64-bit time support is present, and otherwise errors.
It is the exact same code used to test for 64-bit time
during the configure stage of building these tools,
so the results of this test before configure takes place
will always be in concordance with the results of
the test that takes place during the configure script.

Based on the test, the configure flag --disable-year2038
is added to every host tool build depending on the host system.

When the year 2038 problem finally comes around,
the effect of the test can be converted
from the toggling of a configure option into a build prerequisite,
requiring it to pass in order to continue building.

Signed-off-by: Michael Pratt <mcpratt@pm.me>
Link: https://github.com/openwrt/openwrt/pull/15799
Signed-off-by: Robert Marko <robimarko@gmail.com>
include/host-build.mk
rules.mk