From patchwork Thu May 27 20:45:49 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 53796 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BE3FCB7D1F for ; Fri, 28 May 2010 07:06:22 +1000 (EST) Received: from localhost ([127.0.0.1]:32771 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OHkHU-0000c8-1K for incoming@patchwork.ozlabs.org; Thu, 27 May 2010 17:06:20 -0400 Received: from [140.186.70.92] (port=37928 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OHjyl-0001pN-7h for qemu-devel@nongnu.org; Thu, 27 May 2010 16:47:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OHjyk-0005DY-2A for qemu-devel@nongnu.org; Thu, 27 May 2010 16:46:58 -0400 Received: from are.twiddle.net ([75.149.56.221]:51168) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OHjyj-0005DN-TH for qemu-devel@nongnu.org; Thu, 27 May 2010 16:46:58 -0400 Received: from anchor.twiddle.home (anchor.twiddle.home [172.31.0.4]) by are.twiddle.net (Postfix) with ESMTPS id 2DB8BA32; Thu, 27 May 2010 13:46:57 -0700 (PDT) Received: from anchor.twiddle.home (anchor.twiddle.home [127.0.0.1]) by anchor.twiddle.home (8.14.4/8.14.4) with ESMTP id o4RKkuT4030865; Thu, 27 May 2010 13:46:56 -0700 Received: (from rth@localhost) by anchor.twiddle.home (8.14.4/8.14.4/Submit) id o4RKktKH030864; Thu, 27 May 2010 13:46:55 -0700 From: Richard Henderson To: qemu-devel@nongnu.org Date: Thu, 27 May 2010 13:45:49 -0700 Message-Id: <1274993204-30766-8-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.0.1 In-Reply-To: <1274993204-30766-1-git-send-email-rth@twiddle.net> References: <1274993204-30766-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Cc: agraf@suse.de, aurelien@aurel32.net Subject: [Qemu-devel] [PATCH 07/62] s390x: Don't use a linker script for user-only. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 --- configure | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 3cd2c5f..e2b389d 100755 --- a/configure +++ b/configure @@ -2753,6 +2753,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" ;;