diff options
| author | H.J. Lu <hjl.tools@gmail.com> | 2024-12-23 08:11:58 +0800 |
|---|---|---|
| committer | H.J. Lu <hjl.tools@gmail.com> | 2024-12-23 14:58:53 +0800 |
| commit | 15ab68bf1abddff3b2fc0fa8ed53bb42fcd66cec (patch) | |
| tree | dae52511b542f8c8c540e1b7c37e105424d2e841 /configure.ac | |
| parent | 33aeb88c5bc9a0c6b1bd7190a0ead7570972b719 (diff) | |
| download | glibc-15ab68bf1abddff3b2fc0fa8ed53bb42fcd66cec.tar.xz glibc-15ab68bf1abddff3b2fc0fa8ed53bb42fcd66cec.zip | |
configure: Improve configure output for C++ Compiler
Change configure output for C++ Compiler from
...
checking -finput-charset=ascii in testing... -finput-charset=ascii
checking -finput-charset=ascii in testing... -finput-charset=ascii
...
to
...
checking -finput-charset=ascii in testing... -finput-charset=ascii
checking g++ -finput-charset=ascii in testing... -finput-charset=ascii
...
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a535a09de8..fc5ddb8561 100644 --- a/configure.ac +++ b/configure.ac @@ -1610,7 +1610,7 @@ LIBC_CONFIG_VAR(test-config-cflags-finput-charset-ascii, $libc_cv_test_cflags_finput_charset_ascii) dnl Check if TEST_CXX supports -finput-charset=ascii. -LIBC_TRY_TEST_CXX_OPTION([-finput-charset=ascii], +LIBC_TRY_TEST_CXX_OPTION([$CXX -finput-charset=ascii], [-c -Werror -finput-charset=ascii], libc_cv_test_cxxflags_finput_charset_ascii, [libc_cv_test_cxxflags_finput_charset_ascii="-finput-charset=ascii"], |
