* Re: [Qemu-devel] [V4 PATCH (resend) 3/6] target-ppc: Add a new user mode target for little-endian PPC64. [not found] ` <1401372744-12565-4-git-send-email-tommusta@gmail.com> @ 2014-06-02 12:23 ` Tom Musta 2014-06-02 12:27 ` [Qemu-devel] [Qemu-ppc] " Alexander Graf 0 siblings, 1 reply; 4+ messages in thread From: Tom Musta @ 2014-06-02 12:23 UTC (permalink / raw) To: qemu-devel; +Cc: Doug Kwan, qemu-ppc On 5/29/2014 9:12 AM, Tom Musta wrote: > From: Doug Kwan <dougkwan@google.com> > > Signed-off-by: Doug Kwan <dougkwan@google.com> > Signed-off-by: Tom Musta <tommusta@gmail.com> > > --- > V3: Addressing comment from Peter Maydell. Adding libdecnumber enable. > > configure | 6 ++++++ > 1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index 0e516f9..3ccbe4b 100755 > --- a/configure > +++ b/configure > @@ -4930,6 +4930,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 > Alex: I'm afraid I dropped part of this patch (the part that creates a new default-configs/ppc64le-linux-user.mak file). Since you have taken this into ppc-next, do you want a single small patch that adds this in? Or do you want me to fix and resubmit a complete V5? ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [Qemu-ppc] [V4 PATCH (resend) 3/6] target-ppc: Add a new user mode target for little-endian PPC64. 2014-06-02 12:23 ` [Qemu-devel] [V4 PATCH (resend) 3/6] target-ppc: Add a new user mode target for little-endian PPC64 Tom Musta @ 2014-06-02 12:27 ` Alexander Graf 2014-06-02 14:10 ` Tom Musta 0 siblings, 1 reply; 4+ messages in thread From: Alexander Graf @ 2014-06-02 12:27 UTC (permalink / raw) To: Tom Musta, qemu-devel; +Cc: Doug Kwan, qemu-ppc On 02.06.14 14:23, Tom Musta wrote: > On 5/29/2014 9:12 AM, Tom Musta wrote: >> From: Doug Kwan <dougkwan@google.com> >> >> Signed-off-by: Doug Kwan <dougkwan@google.com> >> Signed-off-by: Tom Musta <tommusta@gmail.com> >> >> --- >> V3: Addressing comment from Peter Maydell. Adding libdecnumber enable. >> >> configure | 6 ++++++ >> 1 files changed, 6 insertions(+), 0 deletions(-) >> >> diff --git a/configure b/configure >> index 0e516f9..3ccbe4b 100755 >> --- a/configure >> +++ b/configure >> @@ -4930,6 +4930,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 >> > Alex: I'm afraid I dropped part of this patch (the part that creates a new default-configs/ppc64le-linux-user.mak file). > > Since you have taken this into ppc-next, do you want a single small patch that adds this in? Or do you want me to fix and resubmit a complete V5? You can either send just a new patch 3/6 and I replace the one in my queue or a patch on top. Alex ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [Qemu-ppc] [V4 PATCH (resend) 3/6] target-ppc: Add a new user mode target for little-endian PPC64. 2014-06-02 12:27 ` [Qemu-devel] [Qemu-ppc] " Alexander Graf @ 2014-06-02 14:10 ` Tom Musta 2014-06-03 16:24 ` Alexander Graf 0 siblings, 1 reply; 4+ messages in thread From: Tom Musta @ 2014-06-02 14:10 UTC (permalink / raw) To: Alexander Graf, qemu-devel; +Cc: Doug Kwan, qemu-ppc On 6/2/2014 7:27 AM, Alexander Graf wrote: > You can either send just a new patch 3/6 and I replace the one in my queue or a patch on top. From: Doug Kwan <dougkwan@google.com> Date: Thu, 15 May 2014 15:54:55 -0500 Subject: [V4 PATCH (resend) 3/6] target-ppc: Add a new user mode target for little-endian PPC64. Signed-off-by: Doug Kwan <dougkwan@google.com> Signed-off-by: Tom Musta <tommusta@gmail.com> --- V3: Addressing comment from Peter Maydell. Adding libdecnumber enable. configure | 6 ++++++ default-configs/ppc64le-linux-user.mak | 3 +++ 2 files changed, 9 insertions(+), 0 deletions(-) create mode 100644 default-configs/ppc64le-linux-user.mak diff --git a/configure b/configure index 0e516f9..3ccbe4b 100755 --- a/configure +++ b/configure @@ -4930,6 +4930,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..cf99ced --- /dev/null +++ b/default-configs/ppc64le-linux-user.mak @@ -0,0 +1,3 @@ +# Default configuration for ppc64le-linux-user +CONFIG_LIBDECNUMBER=y + -- 1.7.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [Qemu-ppc] [V4 PATCH (resend) 3/6] target-ppc: Add a new user mode target for little-endian PPC64. 2014-06-02 14:10 ` Tom Musta @ 2014-06-03 16:24 ` Alexander Graf 0 siblings, 0 replies; 4+ messages in thread From: Alexander Graf @ 2014-06-03 16:24 UTC (permalink / raw) To: Tom Musta; +Cc: Doug Kwan, qemu-ppc, qemu-devel On 06/02/2014 04:10 PM, Tom Musta wrote: > On 6/2/2014 7:27 AM, Alexander Graf wrote: >> You can either send just a new patch 3/6 and I replace the one in my queue or a patch on top. > From: Doug Kwan <dougkwan@google.com> > Date: Thu, 15 May 2014 15:54:55 -0500 > Subject: [V4 PATCH (resend) 3/6] target-ppc: Add a new user mode target for little-endian PPC64. > > Signed-off-by: Doug Kwan <dougkwan@google.com> > Signed-off-by: Tom Musta <tommusta@gmail.com> Thanks, fixed up in ppc-next. Alex ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-06-03 16:25 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <1401372744-12565-1-git-send-email-tommusta@gmail.com> [not found] ` <1401372744-12565-4-git-send-email-tommusta@gmail.com> 2014-06-02 12:23 ` [Qemu-devel] [V4 PATCH (resend) 3/6] target-ppc: Add a new user mode target for little-endian PPC64 Tom Musta 2014-06-02 12:27 ` [Qemu-devel] [Qemu-ppc] " Alexander Graf 2014-06-02 14:10 ` Tom Musta 2014-06-03 16:24 ` Alexander Graf
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).