diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-28 16:06:39 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-12-04 09:53:58 -0500 |
commit | 5ec467328122b80fac94c2d5e3e7540d50381868 (patch) | |
tree | f6f1b02e731a963ac689c368371a976dd8e8ccf4 /configure | |
parent | c255f0b001da3afa4709f5378680880b8a2dbe61 (diff) | |
download | ffmpeg-5ec467328122b80fac94c2d5e3e7540d50381868.tar.gz |
configure: Add detected C library and host compiler to informative output
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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" |