From: Richard Henderson Date: Fri, 4 Jun 2010 19:14:11 +0000 (-0700) Subject: s390x: Don't use a linker script for user-only. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4d58be0628bf1d30b8c1b3600f0ce44db1b38b2f;p=qemu.git s390x: Don't use a linker script for user-only. The default placement of the application at 0x80000000 is fine, and will avoid the default placement for most other guests. Signed-off-by: Richard Henderson Signed-off-by: Aurelien Jarno --- diff --git a/configure b/configure index fa7f299904..927e1047b1 100755 --- a/configure +++ b/configure @@ -2763,6 +2763,9 @@ if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then # -static is used to avoid g1/g3 usage by the dynamic linker ldflags="$linker_script -static $ldflags" ;; + alpha | s390x) + # The default placement of the application is fine. + ;; *) ldflags="$linker_script $ldflags" ;;