From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46109) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiJtZ-0006b2-7y for qemu-devel@nongnu.org; Thu, 08 May 2014 04:41:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WiJtR-0002s1-54 for qemu-devel@nongnu.org; Thu, 08 May 2014 04:41:37 -0400 Message-ID: <536B4338.60006@suse.de> Date: Thu, 08 May 2014 10:41:28 +0200 From: Alexander Graf MIME-Version: 1.0 References: <1399537603-6905-1-git-send-email-dougkwan@google.com> <1399537603-6905-4-git-send-email-dougkwan@google.com> In-Reply-To: <1399537603-6905-4-git-send-email-dougkwan@google.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 3/3] configure: Add new target ppc64el-linux-user List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Doug Kwan Cc: riku.voipio@iki.fi, qemu-ppc@nongnu.org, qemu-devel@nongnu.org On 05/08/2014 10:26 AM, Doug Kwan wrote: > Add a new user mode target for little-endian PPC64. > > Signed-off-by: Doug Kwan > --- > configure | 6 ++++++ > default-configs/ppc64el-linux-user.mak | 1 + > 2 files changed, 7 insertions(+) > create mode 100644 default-configs/ppc64el-linux-user.mak > > diff --git a/configure b/configure > index ac2fa15..ce44044 100755 > --- a/configure > +++ b/configure > @@ -4917,6 +4917,12 @@ case "$target_name" in > echo "TARGET_ABI32=y" >> $config_target_mak > gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" > ;; > + ppc64el) > + TARGET_ARCH=ppc64 > + TARGET_BASE_ARCH=ppc > + TARGET_ABI_DIR=ppc > + gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" I can't see the part where this switches the ABI definition to be little endian? I'm sure that magic is hidden somewhere, mind to guide me to it? Alex