diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-11-09 19:00:04 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-11-09 22:16:09 +0100 |
commit | 57cf454c61b67681a9bbae456e558c880006bf67 (patch) | |
tree | e27276eb5042c3aaf7846965bca9ec8c5c5bf9d4 /package/libffi/0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch | |
parent | ca17e0c7a02298b0250cdc121bcacef0b58fffe1 (diff) | |
download | buildroot-57cf454c61b67681a9bbae456e558c880006bf67.tar.gz buildroot-57cf454c61b67681a9bbae456e558c880006bf67.zip |
libffi: bump to version 3.3-rc0
- 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 since
https://github.com/libffi/libffi/commit/982b89c01aca99c7bc229914fc1521f96930919b
- New risc-v support:
https://github.com/libffi/libffi/commit/3840d49aaa831d649b1597518a2903dfed0d57f3
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>
Diffstat (limited to 'package/libffi/0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch')
-rw-r--r-- | package/libffi/0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/libffi/0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch b/package/libffi/0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch index 776990df65..168972a871 100644 --- a/package/libffi/0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch +++ b/package/libffi/0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch @@ -7,6 +7,8 @@ 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 + @@ -17,9 +19,10 @@ index c6985d3..dc842d5 100644 --- a/src/mips/n32.S +++ b/src/mips/n32.S @@ -44,6 +44,7 @@ - .abicalls #endif + #if !defined(__mips_isa_rev) || (__mips_isa_rev<6) .set mips4 + #endif + .set hardfloat .text .align 2 |