aboutsummaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2024-12-24 05:20:43 +0800
committerH.J. Lu <hjl.tools@gmail.com>2024-12-24 16:16:38 +0800
commit0c36c983ecb522688b3e4dbad6196839188509d9 (patch)
tree4d076776d19f94438a458ce592865fa393e0e328 /manual
parentd0b8aa6de4529231fadfe604ac2c434e559c2d9e (diff)
downloadglibc-0c36c983ecb522688b3e4dbad6196839188509d9.zip
glibc-0c36c983ecb522688b3e4dbad6196839188509d9.tar.gz
glibc-0c36c983ecb522688b3e4dbad6196839188509d9.tar.bz2
NEWS: Mention testing glibc build with a different set of compilers
Also document C and C++ compilers used to test glibc should come from the same set of compilers. Signed-off-by: H.J. Lu <hjl.tools@gmail.com> Reviewed-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'manual')
-rw-r--r--manual/install.texi7
1 files changed, 3 insertions, 4 deletions
diff --git a/manual/install.texi b/manual/install.texi
index 61745b8..05a774b 100644
--- a/manual/install.texi
+++ b/manual/install.texi
@@ -75,10 +75,9 @@ and @theglibc{} cannot be compiled without optimization, so if
$ ../glibc-@var{version}/configure CC="gcc -m32" CFLAGS="-O3"
@end smallexample
-To test @theglibc{} with a different C compiler or a different C++
-compiler, @samp{TEST_CC=@var{compiler}} and
-@samp{TEST_CXX=@var{compiler}} arguments can be passed to
-@code{configure}. For example:
+To test @theglibc{} with a different set of C and C++ compilers,
+@samp{TEST_CC=@var{compiler}} and @samp{TEST_CXX=@var{compiler}}
+arguments can be passed to @code{configure}. For example:
@smallexample
$ ../glibc-@var{version}/configure TEST_CC="gcc-6.4.1" TEST_CXX="g++-6.4.1"