57cf454c61
- Update site to github (for the time being, as 3.3-rc0 is a release candidate, it is not published on the official ftp) - Update third patch - Remove fourth and fifth patches (already in version) - Remove uneeded hooks, as public headers are now installed in the standard path since982b89c01a
- New risc-v support:3840d49aaa
Fixes: - http://autobuild.buildroot.org/results/3edf66362ea5a83291f19373e4b6f2e5cce98d7b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
45 lines
1.1 KiB
Diff
45 lines
1.1 KiB
Diff
From 48bc37fabbc685b1e3293055bd33ca66c619305e Mon Sep 17 00:00:00 2001
|
|
From: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
|
Date: Wed, 13 Jan 2016 14:49:59 +0000
|
|
Subject: [PATCH] libffi: enable hardfloat in the MIPS assembly code
|
|
|
|
This way it will be possible to build it for soft-float. This is only a
|
|
temporary fix. The package needs to be fixed properly.
|
|
|
|
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
|
[Update for 3.3-rc0]
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
---
|
|
src/mips/n32.S | 1 +
|
|
src/mips/o32.S | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
diff --git a/src/mips/n32.S b/src/mips/n32.S
|
|
index c6985d3..dc842d5 100644
|
|
--- a/src/mips/n32.S
|
|
+++ b/src/mips/n32.S
|
|
@@ -44,6 +44,7 @@
|
|
#endif
|
|
#if !defined(__mips_isa_rev) || (__mips_isa_rev<6)
|
|
.set mips4
|
|
#endif
|
|
+ .set hardfloat
|
|
.text
|
|
.align 2
|
|
.globl ffi_call_N32
|
|
diff --git a/src/mips/o32.S b/src/mips/o32.S
|
|
index eb27981..b653daf 100644
|
|
--- a/src/mips/o32.S
|
|
+++ b/src/mips/o32.S
|
|
@@ -42,6 +42,7 @@
|
|
#define RA_OFF (SIZEOF_FRAME - 1 * FFI_SIZEOF_ARG)
|
|
|
|
.abicalls
|
|
+ .set hardfloat
|
|
.text
|
|
.align 2
|
|
.globl ffi_call_O32
|
|
--
|
|
2.4.10
|
|
|