Skip to content

Commit 20562ac

Browse files
committed
Fix for AArch64. Release as 3.2.1.
1 parent a0bdc52 commit 20562ac

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Status
22
======
33

4-
libffi-3.2 was released on November 11, 2014. Check the libffi web
4+
libffi-3.2.1 was released on November 12, 2014. Check the libffi web
55
page for updates: <URL:http://sourceware.org/libffi/>.
66

77

@@ -182,6 +182,9 @@ History
182182

183183
See the git log for details at http://github.com/atgreen/libffi.
184184

185+
3.2.1 Nov-12-14
186+
Build fix for non-iOS AArch64 targets.
187+
185188
3.2 Nov-11-14
186189
Add C99 Complex Type support (currently only supported on
187190
s390).

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
22

33
AC_PREREQ(2.68)
44

5-
AC_INIT([libffi], [3.2], [http://github.com/atgreen/libffi/issues])
5+
AC_INIT([libffi], [3.2.1], [http://github.com/atgreen/libffi/issues])
66
AC_CONFIG_HEADERS([fficonfig.h])
77

88
AC_CANONICAL_SYSTEM

doc/version.texi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@set UPDATED 8 November 2014
22
@set UPDATED-MONTH November 2014
3-
@set EDITION 3.2
4-
@set VERSION 3.2
3+
@set EDITION 3.2.1
4+
@set VERSION 3.2.1

src/aarch64/ffi.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,9 @@ ffi_prep_cif_machdep (ffi_cif *cif)
782782
}
783783
}
784784

785+
#if defined (__APPLE__)
785786
cif->aarch64_nfixedargs = 0;
787+
#endif
786788

787789
return FFI_OK;
788790
}

0 commit comments

Comments
 (0)