blob: df3300e9fd449d2ba21ebd4742b9f2d6a641436d [file] [log] [blame]
Anthony Greenc6dddbd2009-10-04 08:11:33 -04001Status
2======
3
Anthony Green048d2f42012-10-11 10:55:25 -04004libffi-3.0.12 was released on XXXXXXX. Check the libffi web page for
Anthony Green09b23cf2012-04-27 08:29:48 -04005updates: <URL:http://sourceware.org/libffi/>.
Anthony Greenc6dddbd2009-10-04 08:11:33 -04006
7
8What is libffi?
9===============
10
11Compilers for high level languages generate code that follow certain
12conventions. These conventions are necessary, in part, for separate
13compilation to work. One such convention is the "calling
14convention". The "calling convention" is essentially a set of
15assumptions made by the compiler about where function arguments will
16be found on entry to a function. A "calling convention" also specifies
17where the return value for a function is found.
18
19Some programs may not know at the time of compilation what arguments
20are to be passed to a function. For instance, an interpreter may be
21told at run-time about the number and types of arguments used to call
22a given function. Libffi can be used in such programs to provide a
23bridge from the interpreter program to compiled code.
24
25The libffi library provides a portable, high level programming
26interface to various calling conventions. This allows a programmer to
27call any function specified by a call interface description at run
28time.
29
30FFI stands for Foreign Function Interface. A foreign function
31interface is the popular name for the interface that allows code
32written in one language to call code written in another language. The
33libffi library really only provides the lowest, machine dependent
34layer of a fully featured foreign function interface. A layer must
35exist above libffi that handles type conversions for values passed
36between the two languages.
37
38
39Supported Platforms
40===================
41
Anthony Green0cfe60e2009-12-29 10:06:04 -050042Libffi has been ported to many different platforms.
43For specific configuration details and testing status, please
44refer to the wiki page here:
Anthony Greenc6dddbd2009-10-04 08:11:33 -040045
Anthony Greenee6696f2011-08-23 12:30:29 -040046 http://www.moxielogic.org/wiki/index.php?title=Libffi_3.0.11
Anthony Green0cfe60e2009-12-29 10:06:04 -050047
48At the time of release, the following basic configurations have been
49tested:
50
Anthony Green9c00a3f2012-10-12 16:46:06 -040051|-----------------+------------------|
52| Architecture | Operating System |
53|-----------------+------------------|
54| Alpha | Linux |
55| Alpha | Tru64 |
56| ARM | Linux |
57| ARM | iOS |
58| AVR32 | Linux |
59| Blackfin | uClinux |
60| HPPA | HPUX |
61| IA-64 | Linux |
62| M68K | FreeMiNT |
63| M68K | RTEMS |
64| MIPS | IRIX |
65| MIPS | Linux |
66| MIPS | RTEMS |
67| MIPS64 | Linux |
68| PowerPC | AMIGA |
69| PowerPC | Linux |
70| PowerPC | Mac OSX |
71| PowerPC | FreeBSD |
72| PowerPC64 | Linux |
73| S390 | Linux |
74| S390X | Linux |
75| SPARC | Linux |
76| SPARC | Solaris |
77| SPARC64 | Linux |
78| SPARC64 | FreeBSD |
79| TILE-Gx/TILEPro | |
80| X86 | FreeBSD |
81| X86 | Interix |
82| X86 | kFreeBSD |
83| X86 | Linux |
84| X86 | Mac OSX |
85| X86 | OpenBSD |
86| X86 | OS/2 |
87| X86 | Solaris |
88| X86 | Windows/Cygwin |
89| X86 | Windows/MingW |
90| X86-64 | FreeBSD |
91| X86-64 | Linux |
92| X86-64 | Linux/x32 |
93| X86-64 | OpenBSD |
94| X86-64 | Windows/MingW |
95|-----------------+------------------|
Anthony Green2e7e03d2009-12-31 07:43:22 -050096
Anthony Greenc6dddbd2009-10-04 08:11:33 -040097Please send additional platform test results to
Anthony Green0cfe60e2009-12-29 10:06:04 -050098libffi-discuss@sourceware.org and feel free to update the wiki page
99above.
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400100
101Installing libffi
102=================
103
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400104First you must configure the distribution for your particular
105system. Go to the directory you wish to build libffi in and run the
106"configure" program found in the root directory of the libffi source
107distribution.
108
109You may want to tell configure where to install the libffi library and
110header files. To do that, use the --prefix configure switch. Libffi
111will install under /usr/local by default.
112
113If you want to enable extra run-time debugging checks use the the
114--enable-debug configure switch. This is useful when your program dies
115mysteriously while using libffi.
116
117Another useful configure switch is --enable-purify-safety. Using this
118will add some extra code which will suppress certain warnings when you
119are using Purify with libffi. Only use this switch when using
120Purify, as it will slow down the library.
121
Anthony Greenff3cd682010-01-15 11:27:24 -0500122It's also possible to build libffi on Windows platforms with
123Microsoft's Visual C++ compiler. In this case, use the msvcc.sh
124wrapper script during configuration like so:
125
Anthony Green9dc9a292010-04-13 10:33:52 -0400126path/to/configure CC=path/to/msvcc.sh LD=link CPP=\"cl -nologo -EP\"
127
128For 64-bit Windows builds, use CC="path/to/msvcc.sh -m64".
129You may also need to specify --build appropriately. When building with MSVC
130under a MingW environment, you may need to remove the line in configure
131that sets 'fix_srcfile_path' to a 'cygpath' command. ('cygpath' is not
132present in MingW, and is not required when using MingW-style paths.)
Anthony Greenff3cd682010-01-15 11:27:24 -0500133
Nicolas Lelongd330f192012-05-05 09:37:02 -0400134For iOS builds, the 'libffi.xcodeproj' Xcode project is available.
Anthony Greenf4983182011-02-09 06:26:46 -0500135
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400136Configure has many other options. Use "configure --help" to see them all.
137
138Once configure has finished, type "make". Note that you must be using
139GNU make. You can ftp GNU make from prep.ai.mit.edu:/pub/gnu.
140
141To ensure that libffi is working as advertised, type "make check".
142This will require that you have DejaGNU installed.
143
144To install the library and header files, type "make install".
145
146
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400147History
148=======
149
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500150See the ChangeLog files for details.
151
Anthony Green09b23cf2012-04-27 08:29:48 -04001523.0.12 XXX-XX-XX
Anthony Green048d2f42012-10-11 10:55:25 -0400153 Add Blackfin support.
Anthony Green9c00a3f2012-10-12 16:46:06 -0400154 Add TILE-Gx/TILEPro support.
Anthony Green09b23cf2012-04-27 08:29:48 -0400155
Anthony Greenff3d76f2012-04-11 23:16:48 -04001563.0.11 Apr-11-12
Anthony Green048d2f42012-10-11 10:55:25 -0400157 Lots of build fixes.
158 Add Amiga newer MacOS support.
159 Add support for variadic functions (ffi_prep_cif_var).
Anthony Green964c5b92012-03-03 14:46:20 -0500160 Add Linux/x32 support.
Anthony Green59bb61a2012-04-06 08:26:14 -0400161 Add thiscall, fastcall and MSVC cdecl support on Windows.
Anthony Green048d2f42012-10-11 10:55:25 -0400162 Add Amiga and newer MacOS support.
Anthony Green59bb61a2012-04-06 08:26:14 -0400163 Add m68k FreeMiNT support.
Mike Lewisebb8e892012-04-06 20:02:08 -0400164 Integration with iOS' xcode build tools.
165 Fix Octeon and MC68881 support.
Anthony Greenafaf3382012-01-23 14:17:13 -0500166 Fix code pessimizations.
Anthony Green048d2f42012-10-11 10:55:25 -0400167 Lots of build fixes.
Anthony Greenee6696f2011-08-23 12:30:29 -0400168
Anthony Greenc6265c32011-08-23 10:31:33 -04001693.0.10 Aug-23-11
Anthony Greencbb062c2011-02-17 20:39:21 -0500170 Add support for Apple's iOS.
Anthony Green1fbf9dc2011-02-13 08:06:39 -0500171 Add support for ARM VFP ABI.
Anthony Green630b9c02011-02-09 06:24:23 -0500172 Add RTEMS support for MIPS and M68K.
Anthony Greenc6265c32011-08-23 10:31:33 -0400173 Fix instruction cache clearing problems on
174 ARM and SPARC.
Anthony Green2db72612010-11-21 10:50:56 -0500175 Fix the N64 build on mips-sgi-irix6.5.
Anthony Greencbb062c2011-02-17 20:39:21 -0500176 Enable builds with Microsoft's compiler.
177 Enable x86 builds with Oracle's Solaris compiler.
Anthony Greene2214f82011-02-08 19:22:56 -0500178 Fix support for calling code compiled with Oracle's Sparc
Anthony Greencbb062c2011-02-17 20:39:21 -0500179 Solaris compiler.
180 Testsuite fixes for Tru64 Unix.
Anthony Greenc6265c32011-08-23 10:31:33 -0400181 Additional platform support.
Anthony Green2db72612010-11-21 10:50:56 -0500182
Anthony Green2e7e03d2009-12-31 07:43:22 -05001833.0.9 Dec-31-09
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500184 Add AVR32 and win64 ports. Add ARM softfp support.
185 Many fixes for AIX, Solaris, HP-UX, *BSD.
Anthony Green2e7e03d2009-12-31 07:43:22 -0500186 Several PowerPC and x86-64 bug fixes.
Anthony Green0cfe60e2009-12-29 10:06:04 -0500187 Build DLL for windows.
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500188
1893.0.8 Dec-19-08
190 Add *BSD, BeOS, and PA-Linux support.
191
Anthony Greenc6dddbd2009-10-04 08:11:33 -04001923.0.7 Nov-11-08
193 Fix for ppc FreeBSD.
194 (thanks to Andreas Tobler)
195
1963.0.6 Jul-17-08
197 Fix for closures on sh.
198 Mark the sh/sh64 stack as non-executable.
199 (both thanks to Kaz Kojima)
200
2013.0.5 Apr-3-08
202 Fix libffi.pc file.
203 Fix #define ARM for IcedTea users.
204 Fix x86 closure bug.
205
2063.0.4 Feb-24-08
207 Fix x86 OpenBSD configury.
208
2093.0.3 Feb-22-08
210 Enable x86 OpenBSD thanks to Thomas Heller, and
211 x86-64 FreeBSD thanks to Björn König and Andreas Tobler.
212 Clean up test instruction in README.
213
2143.0.2 Feb-21-08
215 Improved x86 FreeBSD support.
216 Thanks to Björn König.
217
2183.0.1 Feb-15-08
219 Fix instruction cache flushing bug on MIPS.
220 Thanks to David Daney.
221
2223.0.0 Feb-15-08
223 Many changes, mostly thanks to the GCC project.
224 Cygnus Solutions is now Red Hat.
225
226 [10 years go by...]
227
2281.20 Oct-5-98
229 Raffaele Sena produces ARM port.
230
2311.19 Oct-5-98
232 Fixed x86 long double and long long return support.
233 m68k bug fixes from Andreas Schwab.
234 Patch for DU assembler compatibility for the Alpha from Richard
235 Henderson.
236
2371.18 Apr-17-98
238 Bug fixes and MIPS configuration changes.
239
2401.17 Feb-24-98
241 Bug fixes and m68k port from Andreas Schwab. PowerPC port from
242 Geoffrey Keating. Various bug x86, Sparc and MIPS bug fixes.
243
2441.16 Feb-11-98
245 Richard Henderson produces Alpha port.
246
2471.15 Dec-4-97
248 Fixed an n32 ABI bug. New libtool, auto* support.
249
2501.14 May-13-97
251 libtool is now used to generate shared and static libraries.
252 Fixed a minor portability problem reported by Russ McManus
253 <mcmanr@eq.gs.com>.
254
2551.13 Dec-2-96
256 Added --enable-purify-safety to keep Purify from complaining
257 about certain low level code.
258 Sparc fix for calling functions with < 6 args.
259 Linux x86 a.out fix.
260
2611.12 Nov-22-96
262 Added missing ffi_type_void, needed for supporting void return
263 types. Fixed test case for non MIPS machines. Cygnus Support
264 is now Cygnus Solutions.
265
2661.11 Oct-30-96
267 Added notes about GNU make.
268
2691.10 Oct-29-96
270 Added configuration fix for non GNU compilers.
271
2721.09 Oct-29-96
273 Added --enable-debug configure switch. Clean-ups based on LCLint
274 feedback. ffi_mips.h is always installed. Many configuration
275 fixes. Fixed ffitest.c for sparc builds.
276
2771.08 Oct-15-96
278 Fixed n32 problem. Many clean-ups.
279
2801.07 Oct-14-96
281 Gordon Irlam rewrites v8.S again. Bug fixes.
282
2831.06 Oct-14-96
284 Gordon Irlam improved the sparc port.
285
2861.05 Oct-14-96
287 Interface changes based on feedback.
288
2891.04 Oct-11-96
290 Sparc port complete (modulo struct passing bug).
291
2921.03 Oct-10-96
293 Passing struct args, and returning struct values works for
294 all architectures/calling conventions. Expanded tests.
295
2961.02 Oct-9-96
297 Added SGI n32 support. Fixed bugs in both o32 and Linux support.
298 Added "make test".
299
3001.01 Oct-8-96
301 Fixed float passing bug in mips version. Restructured some
302 of the code. Builds cleanly with SGI tools.
303
3041.00 Oct-7-96
305 First release. No public announcement.
306
307
308Authors & Credits
309=================
310
Anthony Green048d2f42012-10-11 10:55:25 -0400311libffi was originally written by Anthony Green <green@redhat.com>.
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400312
313The developers of the GNU Compiler Collection project have made
314innumerable valuable contributions. See the ChangeLog file for
315details.
316
317Some of the ideas behind libffi were inspired by Gianni Mariani's free
318gencall library for Silicon Graphics machines.
319
320The closure mechanism was designed and implemented by Kresten Krab
321Thorup.
322
323Major processor architecture ports were contributed by the following
324developers:
325
326alpha Richard Henderson
327arm Raffaele Sena
328cris Simon Posnjak, Hans-Peter Nilsson
329frv Anthony Green
330ia64 Hans Boehm
331m32r Kazuhiro Inaoka
332m68k Andreas Schwab
333mips Anthony Green, Casey Marshall
334mips64 David Daney
335pa Randolph Chung, Dave Anglin, Andreas Tobler
336powerpc Geoffrey Keating, Andreas Tobler,
337 David Edelsohn, John Hornkvist
338powerpc64 Jakub Jelinek
339s390 Gerhard Tonn, Ulrich Weigand
340sh Kaz Kojima
341sh64 Kaz Kojima
342sparc Anthony Green, Gordon Irlam
343x86 Anthony Green, Jon Beniston
344x86-64 Bo Thorsen
345
346Jesper Skov and Andrew Haley both did more than their fair share of
347stepping through the code and tracking down bugs.
348
349Thanks also to Tom Tromey for bug fixes, documentation and
350configuration help.
351
352Thanks to Jim Blandy, who provided some useful feedback on the libffi
353interface.
354
355Andreas Tobler has done a tremendous amount of work on the testsuite.
356
357Alex Oliva solved the executable page problem for SElinux.
358
359The list above is almost certainly incomplete and inaccurate. I'm
360happy to make corrections or additions upon request.
361
Anthony Green630b9c02011-02-09 06:24:23 -0500362If you have a problem, or have found a bug, please send a note to the
363author at green@moxielogic.com, or the project mailing list at
364libffi-discuss@sourceware.org.