From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56260) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wjpw1-0004Wx-G9 for qemu-devel@nongnu.org; Mon, 12 May 2014 09:06:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wjpvs-0004ep-Bx for qemu-devel@nongnu.org; Mon, 12 May 2014 09:06:25 -0400 Message-ID: <5370C736.5040104@gmail.com> Date: Mon, 12 May 2014 08:05:58 -0500 From: Tom Musta MIME-Version: 1.0 References: <1399713400-8619-1-git-send-email-dougkwan@google.com> <1399713400-8619-4-git-send-email-dougkwan@google.com> In-Reply-To: <1399713400-8619-4-git-send-email-dougkwan@google.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 3/3] Add a new user mode target for little-endian PPC64. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Doug Kwan , qemu-devel@nongnu.org, qemu-ppc@nongnu.org Cc: riku.voipio@iki.fi, agraf@suse.de On 5/10/2014 4:16 AM, Doug Kwan wrote: > Signed-off-by: Doug Kwan > --- > configure | 6 ++++++ > default-configs/ppc64le-linux-user.mak | 1 + > 2 files changed, 7 insertions(+) > create mode 100644 default-configs/ppc64le-linux-user.mak > > diff --git a/configure b/configure > index 46bc0c9..5f0926b 100755 > --- a/configure > +++ b/configure > @@ -4912,6 +4912,12 @@ case "$target_name" in > TARGET_ABI_DIR=ppc > gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" > ;; > + ppc64le) > + 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" > + ;; > ppc64abi32) > TARGET_ARCH=ppc64 > TARGET_BASE_ARCH=ppc > diff --git a/default-configs/ppc64le-linux-user.mak b/default-configs/ppc64le-linux-user.mak > new file mode 100644 > index 0000000..6948225 > --- /dev/null > +++ b/default-configs/ppc64le-linux-user.mak > @@ -0,0 +1 @@ > +# Default configuration for ppc64el-linux-user > Now that Alex has taken the decimal floating point into his ppc-next tree, we will also want to do this, which will trigger building of the decimal floating point library code: diff --git a/default-configs/ppc64le-linux-user.mak b/default-configs/ppc64le-linux-user.mak index 6948225..dacbcab 100644 --- a/default-configs/ppc64le-linux-user.mak +++ b/default-configs/ppc64le-linux-user.mak @@ -1 +1,2 @@ # Default configuration for ppc64el-linux-user +CONFIG_LIBDECNUMBER=y I will change this (along with the "el" remnant") in V3.