* [Buildroot] [PATCH] libffi: fix powerpc build breakage
@ 2013-02-22 16:55 Gustavo Zacarias
2013-02-22 18:42 ` Peter Korsgaard
0 siblings, 1 reply; 5+ messages in thread
From: Gustavo Zacarias @ 2013-02-22 16:55 UTC (permalink / raw)
To: buildroot
Happens with the latest release when there are no FP registers.
Fixes:
http://autobuild.buildroot.net/results/bc43261d3ddc9d4c320522563249f4a0695a35a4/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
...ppc-build-breakage-when-there-are-no-FPRs.patch | 46 ++++++++++++++++++++++
1 file changed, 46 insertions(+)
create mode 100644 package/libffi/libffi-002-Fix-ppc-build-breakage-when-there-are-no-FPRs.patch
diff --git a/package/libffi/libffi-002-Fix-ppc-build-breakage-when-there-are-no-FPRs.patch b/package/libffi/libffi-002-Fix-ppc-build-breakage-when-there-are-no-FPRs.patch
new file mode 100644
index 0000000..5f0e576
--- /dev/null
+++ b/package/libffi/libffi-002-Fix-ppc-build-breakage-when-there-are-no-FPRs.patch
@@ -0,0 +1,46 @@
+From f800706fa2f4adb5192e859cc5d283c8ab766adf Mon Sep 17 00:00:00 2001
+From: Gustavo Zacarias <gustavo@zacarias.com.ar>
+Date: Fri, 22 Feb 2013 13:32:32 -0300
+Subject: [PATCH] Fix ppc build breakage when there are no FPRs
+
+Introduced by 8bd15d139a58a6e46dc90a1cb2d89f59f32f06c7
+If there are no FP registers there's build breakage:
+
+../src/powerpc/ffi.c: In function 'ffi_prep_args_SYSV':
+../src/powerpc/ffi.c:379:7: error: 'fparg_count' undeclared (first use
+in this function)
+../src/powerpc/ffi.c:379:7: note: each undeclared identifier is reported
+only once for each function it appears in
+../src/powerpc/ffi.c:379:21: error: 'NUM_FPR_ARG_REGISTERS' undeclared
+(first use in this function)
+
+Hit it when building for a SPE PPC target (e500v1/v2 cores) that uses GP
+registers for FP math.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+---
+ src/powerpc/ffi.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/powerpc/ffi.c b/src/powerpc/ffi.c
+index f3a96a1..6220f0d 100644
+--- a/src/powerpc/ffi.c
++++ b/src/powerpc/ffi.c
+@@ -372,13 +372,13 @@ ffi_prep_args_SYSV (extended_cif *ecif, unsigned *const stack)
+ /* Check that we didn't overrun the stack... */
+ FFI_ASSERT (copy_space.c >= next_arg.c);
+ FFI_ASSERT (gpr_base.u <= stacktop.u - ASM_NEEDS_REGISTERS);
++#ifndef __NO_FPRS__
+ /* The assert below is testing that the number of integer arguments agrees
+ with the number found in ffi_prep_cif_machdep(). However, intarg_count
+ is incremeneted whenever we place an FP arg on the stack, so account for
+ that before our assert test. */
+ if (fparg_count > NUM_FPR_ARG_REGISTERS)
+ intarg_count -= fparg_count - NUM_FPR_ARG_REGISTERS;
+-#ifndef __NO_FPRS__
+ FFI_ASSERT (fpr_base.u
+ <= stacktop.u - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS);
+ #endif
+--
+1.7.12.4
+
--
1.7.12.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] libffi: fix powerpc build breakage
2013-02-22 16:55 [Buildroot] [PATCH] libffi: fix powerpc build breakage Gustavo Zacarias
@ 2013-02-22 18:42 ` Peter Korsgaard
2013-02-22 18:57 ` Gilles Talis
2013-02-22 18:57 ` Gustavo Zacarias
0 siblings, 2 replies; 5+ messages in thread
From: Peter Korsgaard @ 2013-02-22 18:42 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Happens with the latest release when there are no FP registers.
Gustavo> Fixes:
Gustavo> http://autobuild.buildroot.net/results/bc43261d3ddc9d4c320522563249f4a0695a35a4/
Thanks, but probably it makes more sense to use Gilles' version:
http://sourceware.org/ml/libffi-discuss/2013/msg00079.html
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] libffi: fix powerpc build breakage
2013-02-22 18:42 ` Peter Korsgaard
@ 2013-02-22 18:57 ` Gilles Talis
2013-02-22 18:57 ` Gustavo Zacarias
1 sibling, 0 replies; 5+ messages in thread
From: Gilles Talis @ 2013-02-22 18:57 UTC (permalink / raw)
To: buildroot
Hi Gustavo, Peter,
2013/2/22 Peter Korsgaard <jacmet@uclibc.org>:
>>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
>
> Gustavo> Happens with the latest release when there are no FP registers.
> Gustavo> Fixes:
> Gustavo> http://autobuild.buildroot.net/results/bc43261d3ddc9d4c320522563249f4a0695a35a4/
>
> Thanks, but probably it makes more sense to use Gilles' version:
>
> http://sourceware.org/ml/libffi-discuss/2013/msg00079.html
>
Sorry for late notice. I meant to send an email to the list today
about it, but you guys beat me to it.
regards,
Gilles.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] libffi: fix powerpc build breakage
2013-02-22 18:42 ` Peter Korsgaard
2013-02-22 18:57 ` Gilles Talis
@ 2013-02-22 18:57 ` Gustavo Zacarias
2013-02-22 19:44 ` Peter Korsgaard
1 sibling, 1 reply; 5+ messages in thread
From: Gustavo Zacarias @ 2013-02-22 18:57 UTC (permalink / raw)
To: buildroot
On 02/22/2013 03:42 PM, Peter Korsgaard wrote:
> Thanks, but probably it makes more sense to use Gilles' version:
>
> http://sourceware.org/ml/libffi-discuss/2013/msg00079.html
Huh, missed it by a few hours, happens when you look at things the night
before fixing them :)
Honestly it doesn't make more sense since it's the same, it's just more
fair, sent V2.
Regards.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] libffi: fix powerpc build breakage
2013-02-22 18:57 ` Gustavo Zacarias
@ 2013-02-22 19:44 ` Peter Korsgaard
0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2013-02-22 19:44 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> On 02/22/2013 03:42 PM, Peter Korsgaard wrote:
>> Thanks, but probably it makes more sense to use Gilles' version:
>>
>> http://sourceware.org/ml/libffi-discuss/2013/msg00079.html
Gustavo> Huh, missed it by a few hours, happens when you look at things
Gustavo> the night before fixing them :) Honestly it doesn't make more
Gustavo> sense since it's the same, it's just more fair, sent V2.
Yes, the patches are equivalent, just that it looks more likely that
Gilles' patch will end up in upstream git (as it was posted
first/acked), so it is easier for people to verify that it can be
dropped next time libffi gets bumped.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-02-22 19:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-22 16:55 [Buildroot] [PATCH] libffi: fix powerpc build breakage Gustavo Zacarias
2013-02-22 18:42 ` Peter Korsgaard
2013-02-22 18:57 ` Gilles Talis
2013-02-22 18:57 ` Gustavo Zacarias
2013-02-22 19:44 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox