From 5ec467328122b80fac94c2d5e3e7540d50381868 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 28 Feb 2013 16:06:39 +0100 Subject: [PATCH] configure: Add detected C library and host compiler to informative output --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 832a54ae95..dfa8d9db6d 100755 --- a/configure +++ b/configure @@ -4141,6 +4141,10 @@ check_deps $CONFIG_LIST \ echo "install prefix $prefix" echo "source path $source_path" echo "C compiler $cc" +if test "$host_cc" != "$cc"; then + echo "host C compiler $host_cc" +fi +echo "C library $libc_type" echo "ARCH $arch ($cpu)" if test "$build_suffix" != ""; then echo "build suffix $build_suffix"