From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27678 invoked by alias); 16 Feb 2011 19:24:45 -0000 Received: (qmail 27665 invoked by uid 22791); 16 Feb 2011 19:24:42 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=AWL,BAYES_00,NO_DNS_FOR_FROM,RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mga11.intel.com (HELO mga11.intel.com) (192.55.52.93) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 16 Feb 2011 19:24:37 +0000 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 16 Feb 2011 11:24:36 -0800 X-ExtLoop1: 1 Received: from gnu-6.sc.intel.com ([10.3.194.135]) by fmsmga001.fm.intel.com with ESMTP; 16 Feb 2011 11:24:36 -0800 Received: by gnu-6.sc.intel.com (Postfix, from userid 500) id 15C37180D79; Wed, 16 Feb 2011 11:24:36 -0800 (PST) Date: Wed, 16 Feb 2011 19:24:00 -0000 From: "H.J. Lu" To: binutils@sourceware.org Subject: PATCH: Change x32 LIBPATH_SUFFIX to x32 Message-ID: <20110216192435.GA6256@intel.com> Reply-To: "H.J. Lu" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2011-02/txt/msg00193.txt.bz2 Hi, I checked in this patch to change x32 LIBPATH_SUFFIX to x32, per x32 psABI draft verion 0.2: https://sites.google.com/site/x32abi/ H.J. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 5cb6715..94cb46e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2011-02-16 H.J. Lu + + * emulparams/elf32_x86_64.sh (LIBPATH_SUFFIX): Changed to + x32 for x32. + 2011-02-15 Kai Tietz * pe-dll.c (process_def_file_and_drectve): Don't strip diff --git a/ld/emulparams/elf32_x86_64.sh b/ld/emulparams/elf32_x86_64.sh index 6dc13fc..8895e29 100644 --- a/ld/emulparams/elf32_x86_64.sh +++ b/ld/emulparams/elf32_x86_64.sh @@ -28,7 +28,7 @@ fi case "$target" in x86_64*-linux*|i[3-7]86-*-linux-*) case "$EMULATION_NAME" in - *32*) LIBPATH_SUFFIX=32 ;; + *32*) LIBPATH_SUFFIX=x32 ;; *64*) LIBPATH_SUFFIX=64 ;; esac ;;