diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-04-23 13:44:10 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2010-09-21 18:35:30 +0200 |
commit | da1d85e339730effd889978be5ae2caadd01bfa9 (patch) | |
tree | ef7c05cbf437b269c559858ecf803de4d895c7d9 /configure | |
parent | d6d94fc327af7e7c1343c091317e1ed8786906ad (diff) | |
download | qemu-da1d85e339730effd889978be5ae2caadd01bfa9.zip qemu-da1d85e339730effd889978be5ae2caadd01bfa9.tar.gz qemu-da1d85e339730effd889978be5ae2caadd01bfa9.tar.bz2 |
configure: add logging
Write compile commands and messages to config.log.
Useful for debugging configure.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -16,15 +16,18 @@ TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o" TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe" trap "rm -f $TMPC $TMPO $TMPE ; exit" EXIT INT QUIT TERM +rm -f config.log compile_object() { - $cc $QEMU_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null + echo $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log + $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log 2>&1 } compile_prog() { local_cflags="$1" local_ldflags="$2" - $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags > /dev/null 2> /dev/null + echo $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log + $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log 2>&1 } # check whether a command is available to this shell (may be either an |