From e53f1df472b3795afa5ad0f82b0a69e20c63073b Mon Sep 17 00:00:00 2001 From: Fredrik Roubert Date: Mon, 16 Sep 2024 21:45:40 +0200 Subject: [PATCH] ICU-22873 Make configure log versions of the compilers used. --- icu4c/source/configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/icu4c/source/configure.ac b/icu4c/source/configure.ac index c48e6257728c..f663a76998cd 100644 --- a/icu4c/source/configure.ac +++ b/icu4c/source/configure.ac @@ -133,6 +133,13 @@ AC_SUBST(ENABLE_RELEASE) AC_PROG_CC([cc clang gcc c99 c89 xlc_r xlc cl.exe icc]) AC_PROG_CXX([c++ clang++ g++ gpp xlC_r xlC aCC CC cxx cc++ cl.exe icc FCC KCC RCC]) +AC_MSG_NOTICE([versions of the compilers used:]) +( + set -x + $CC --version + $CXX --version +) 2>&1 | sed 's/^/ /' >&AS_MESSAGE_FD + # pkg-config is needed for harfbuzz support PKG_PROG_PKG_CONFIG([0.20]) PKG_CHECK_MODULES(ICULEHB, icu-le-hb, have_icu_le_hb=true, :)