]> git.ipfire.org Git - thirdparty/glibc.git/commit
Add TEST_CC and TEST_CXX support
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 5 Dec 2024 20:44:05 +0000 (04:44 +0800)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 11 Dec 2024 10:31:00 +0000 (18:31 +0800)
commitb79f25753346a577c9ba0a3dca69bd9d9d72a020
treeb126cf018240a668e5bb8b742029fd9632745c15
parent4d9a4c02f9327338bb8dc890d26fbbeef956ba1b
Add TEST_CC and TEST_CXX support

Support testing glibc build with a different C compiler or a different
C++ compiler with

$ ../glibc-VERSION/configure TEST_CC="gcc-6.4.1" TEST_CXX="g++-6.4.1"

1. Add LIBC_TRY_CC_AND_TEST_CC_OPTION, LIBC_TRY_CC_AND_TEST_CC_COMMAND
and LIBC_TRY_CC_AND_TEST_LINK to test both CC and TEST_CC.
2. Add check and xcheck targets to Makefile.in and override build compiler
options with ones from TEST_CC and TEST_CXX.

Tested on Fedora 41/x86-64:

1. Building with GCC 14.2.1 and testing with GCC 6.4.1 and GCC 11.2.1.
2. Building with GCC 15 and testing with GCC 6.4.1.

Support for GCC versions older than GCC 6.2 may need to change the test
sources.  Other targets may need to update configure.ac under sysdeps and
modify Makefile.in to override target build compiler options.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Sam James <sam@gentoo.org>
INSTALL
Makefile.in
aclocal.m4
configure
configure.ac
manual/install.texi
sysdeps/x86_64/configure
sysdeps/x86_64/configure.ac