]> git.proxmox.com Git - mirror_qemu.git/commitdiff
s390x: Don't use a linker script for user-only.
authorRichard Henderson <rth@twiddle.net>
Fri, 4 Jun 2010 19:14:11 +0000 (12:14 -0700)
committerAurelien Jarno <aurelien@aurel32.net>
Fri, 11 Jun 2010 16:15:36 +0000 (18:15 +0200)
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 <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
configure

index fa7f299904edbec3aa26c30bf381ba473a939376..927e1047b11961d187dd2ae79afc5f5f2f0f16c7 100755 (executable)
--- 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"
     ;;