Skip to content

Commit

Permalink
ICU-22873 Make configure log versions of the compilers used.
Browse files Browse the repository at this point in the history
  • Loading branch information
roubert authored and rp9-next committed Sep 17, 2024
1 parent ee7cc23 commit e53f1df
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions icu4c/source/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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, :)
Expand Down

0 comments on commit e53f1df

Please sign in to comment.