diff options
author | Richard Henderson | 2010-06-04 21:14:11 +0200 |
---|---|---|
committer | Aurelien Jarno | 2010-06-11 18:15:36 +0200 |
commit | 4d58be0628bf1d30b8c1b3600f0ce44db1b38b2f (patch) | |
tree | 72658c928b2a0ea1e6a5a7fbffa8e7a423ed313e /configure | |
parent | s390x: Avoid _llseek. (diff) | |
download | qemu-4d58be0628bf1d30b8c1b3600f0ce44db1b38b2f.tar.gz qemu-4d58be0628bf1d30b8c1b3600f0ce44db1b38b2f.tar.xz qemu-4d58be0628bf1d30b8c1b3600f0ce44db1b38b2f.zip |
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 <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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" ;; |