diff options
author | Yang Tse <yangsita@gmail.com> | 2008-10-10 00:07:41 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-10-10 00:07:41 +0000 |
commit | 4b8f13e902abe1fcbf4052a598b4bde2d3233635 (patch) | |
tree | 2eafd34e7758a9d07648a53cc11624e6f42624d1 /ares | |
parent | 5b9a57f536bc1418f0071f7d488ae340b59c6c65 (diff) |
Add debug tracing for COMPILER_WORKS_IFELSE
Diffstat (limited to 'ares')
-rw-r--r-- | ares/m4/cares-compilers.m4 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ares/m4/cares-compilers.m4 b/ares/m4/cares-compilers.m4 index 5b5f43d8d..ac4fc07e9 100644 --- a/ares/m4/cares-compilers.m4 +++ b/ares/m4/cares-compilers.m4 @@ -328,6 +328,9 @@ AC_DEFUN([CARES_COMPILER_WORKS_IFELSE], [ tmp_compiler_works="yes" ],[ tmp_compiler_works="no" + echo " " >&6 + sed 's/^/cc-fail> /' conftest.err >&6 + echo " " >&6 ]) dnl linking capability verification if test "$tmp_compiler_works" = "yes"; then @@ -341,6 +344,9 @@ AC_DEFUN([CARES_COMPILER_WORKS_IFELSE], [ tmp_compiler_works="yes" ],[ tmp_compiler_works="no" + echo " " >&6 + sed 's/^/ln-fail> /' conftest.err >&6 + echo " " >&6 ]) fi dnl only do runtime verification when not cross-compiling @@ -359,6 +365,9 @@ AC_DEFUN([CARES_COMPILER_WORKS_IFELSE], [ tmp_compiler_works="yes" ],[ tmp_compiler_works="no" + echo " " >&6 + echo "rn-fail test program exited with status $ac_status" >&6 + echo " " >&6 ]) fi dnl branch upon test result |