diff options
author | Anthony Liguori | 2009-06-18 20:31:51 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-06-22 17:15:29 +0200 |
commit | 08b9d66b96f7afe77448e73882281586680a58c6 (patch) | |
tree | 64e8ff84702334634c0bd22f06fa2ef5e174ce48 /configure | |
parent | Don't register cpu reset handler for cpu with APIC. (diff) | |
download | qemu-08b9d66b96f7afe77448e73882281586680a58c6.tar.gz qemu-08b9d66b96f7afe77448e73882281586680a58c6.tar.xz qemu-08b9d66b96f7afe77448e73882281586680a58c6.zip |
Fix build on Mac OS X
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1817,7 +1817,11 @@ esac # Determine what linker flags to use to force archive inclusion check_linker_flags() { - $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 -Wl,$2 >/dev/null 2>/dev/null + w2= + if test "$2" ; then + w2=-Wl,$2 + fi + $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 ${w2} >/dev/null 2>/dev/null } cat > $TMPC << EOF @@ -1831,6 +1835,10 @@ elif check_linker_flags -z,allextract -z,defaultextract ; then # Solaris ld echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_mak echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_mak +elif check_linker_flags -all_load ; then + # Mac OS X + echo "ARLIBS_BEGIN=-all_load" >> $config_mak + echo "ARLIBS_END=" >> $config_mak else echo "Error: your linker does not support --whole-archive or -z." echo "Please report to qemu-devel@nongnu.org" |