diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-02-03 16:27:13 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-02-03 16:27:13 +0000 |
commit | db7287ed1714e0b2792b3974921ef9c81618e160 (patch) | |
tree | 9aba6cd2f5db873ce70fa5478d5d0f3047332763 /configure | |
parent | 45e4522e2e44651231551d8198a25efae716ab2b (diff) | |
download | qemu-db7287ed1714e0b2792b3974921ef9c81618e160.zip |
Use ARCH_CFLAGS in configure tests.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3958 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -442,7 +442,7 @@ cat > $TMPC <<EOF int main(void) {} EOF -if $cc -c -o $TMPO $TMPC 2> /dev/null ; then +if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then : C compiler works ok else echo "ERROR: \"$cc\" either does not exist or does not work" @@ -463,7 +463,7 @@ if test "$check_gcc" = "yes" ; then #endif int main(){return 0;} EOF - if "$cc" -o $TMPE $TMPC 2> /dev/null ; then + if "$cc" $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then echo "WARNING: \"$cc\" looks like gcc 4.x" found_compat_cc="no" if test "$gcc3_search" = "yes" ; then @@ -563,7 +563,7 @@ int main(int argc, char ** argv){ } EOF -if $cc -o $TMPE $TMPC 2> /dev/null ; then +if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then $TMPE && bigendian="yes" else echo big/little test failed @@ -611,7 +611,7 @@ cat > $TMPC << EOF #undef main /* We don't want SDL to override our main() */ int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } EOF - if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /tmp/qemu-$$-sdl-config.log ; then + if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /tmp/qemu-$$-sdl-config.log ; then _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'` if test "$_sdlversion" -lt 121 ; then sdl_too_old=yes @@ -662,7 +662,7 @@ if test "$alsa" = "yes" ; then #include <alsa/asoundlib.h> int main(void) { snd_pcm_t **handle; return snd_pcm_close(*handle); } EOF - if $cc -o $TMPE $TMPC -lasound 2> /dev/null ; then + if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lasound 2> /dev/null ; then : else echo @@ -707,6 +707,7 @@ fi echo "Source path $source_path" echo "C compiler $cc" echo "Host C compiler $host_cc" +echo "ARCH_CFLAGS $ARCH_CFLAGS" echo "make $make" echo "install $install" echo "host CPU $cpu" @@ -862,7 +863,7 @@ else #include <byteswap.h> int main(void) { return bswap_32(0); } EOF - if $cc -o $TMPE $TMPC 2> /dev/null ; then + if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then echo "#define HAVE_BYTESWAP_H 1" >> $config_h fi fi |