blob: 4f524b9c170f7164dbb85802a493e70789bb1e4c [file] [log] [blame]
Anthony Greenc6dddbd2009-10-04 08:11:33 -04001Status
2======
3
Anthony Green630b9c02011-02-09 06:24:23 -05004libffi-3.0.10 was released on XXXXXXXXXX, 2011. Check the libffi web
Anthony Greenc6dddbd2009-10-04 08:11:33 -04005page for updates: <URL:http://sourceware.org/libffi/>.
6
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 Green7b7a42f2010-01-12 09:14:14 -050046 http://www.moxielogic.org/wiki/index.php?title=Libffi_3.0.10
Anthony Green0cfe60e2009-12-29 10:06:04 -050047
48At the time of release, the following basic configurations have been
49tested:
50
51|--------------+------------------|
52| Architecture | Operating System |
53|--------------+------------------|
54| Alpha | Linux |
Anthony Green7b7a42f2010-01-12 09:14:14 -050055| Alpha | Tru64 |
Anthony Green0cfe60e2009-12-29 10:06:04 -050056| ARM | Linux |
Anthony Greene2214f82011-02-08 19:22:56 -050057| ARM | iOS |
Anthony Green0cfe60e2009-12-29 10:06:04 -050058| AVR32 | Linux |
59| HPPA | HPUX |
60| IA-64 | Linux |
Anthony Green630b9c02011-02-09 06:24:23 -050061| M68K | RTEMS |
Anthony Green0cfe60e2009-12-29 10:06:04 -050062| MIPS | IRIX |
63| MIPS | Linux |
Anthony Green630b9c02011-02-09 06:24:23 -050064| MIPS | RTEMS |
Anthony Green0cfe60e2009-12-29 10:06:04 -050065| MIPS64 | Linux |
66| PowerPC | Linux |
67| PowerPC | Mac OSX |
68| PowerPC | FreeBSD |
69| PowerPC64 | Linux |
70| S390 | Linux |
71| S390X | Linux |
72| SPARC | Linux |
73| SPARC | Solaris |
74| SPARC64 | Linux |
75| SPARC64 | FreeBSD |
76| X86 | FreeBSD |
Anthony Green747d6c32011-02-09 14:56:23 -050077| X86 | Interix |
Anthony Green0cfe60e2009-12-29 10:06:04 -050078| X86 | kFreeBSD |
79| X86 | Linux |
80| X86 | Mac OSX |
81| X86 | OpenBSD |
Anthony Greenf2c2a4f2010-04-13 10:19:28 -040082| X86 | OS/2 |
Anthony Green0cfe60e2009-12-29 10:06:04 -050083| X86 | Solaris |
84| X86 | Windows/Cygwin |
85| X86 | Windows/MingW |
86| X86-64 | FreeBSD |
87| X86-64 | Linux |
88| X86-64 | OpenBSD |
Anthony Green4b18d1f2010-01-01 10:24:27 -050089| X86-64 | Windows/MingW |
Anthony Green0cfe60e2009-12-29 10:06:04 -050090|--------------+------------------|
Anthony Green2e7e03d2009-12-31 07:43:22 -050091
Anthony Greenc6dddbd2009-10-04 08:11:33 -040092Please send additional platform test results to
Anthony Green0cfe60e2009-12-29 10:06:04 -050093libffi-discuss@sourceware.org and feel free to update the wiki page
94above.
Anthony Greenc6dddbd2009-10-04 08:11:33 -040095
96Installing libffi
97=================
98
Anthony Greenc6dddbd2009-10-04 08:11:33 -040099First you must configure the distribution for your particular
100system. Go to the directory you wish to build libffi in and run the
101"configure" program found in the root directory of the libffi source
102distribution.
103
104You may want to tell configure where to install the libffi library and
105header files. To do that, use the --prefix configure switch. Libffi
106will install under /usr/local by default.
107
108If you want to enable extra run-time debugging checks use the the
109--enable-debug configure switch. This is useful when your program dies
110mysteriously while using libffi.
111
112Another useful configure switch is --enable-purify-safety. Using this
113will add some extra code which will suppress certain warnings when you
114are using Purify with libffi. Only use this switch when using
115Purify, as it will slow down the library.
116
Anthony Greenff3cd682010-01-15 11:27:24 -0500117It's also possible to build libffi on Windows platforms with
118Microsoft's Visual C++ compiler. In this case, use the msvcc.sh
119wrapper script during configuration like so:
120
Anthony Green9dc9a292010-04-13 10:33:52 -0400121path/to/configure CC=path/to/msvcc.sh LD=link CPP=\"cl -nologo -EP\"
122
123For 64-bit Windows builds, use CC="path/to/msvcc.sh -m64".
124You may also need to specify --build appropriately. When building with MSVC
125under a MingW environment, you may need to remove the line in configure
126that sets 'fix_srcfile_path' to a 'cygpath' command. ('cygpath' is not
127present in MingW, and is not required when using MingW-style paths.)
Anthony Greenff3cd682010-01-15 11:27:24 -0500128
Anthony Greenf4983182011-02-09 06:26:46 -0500129For iOS builds, refer to the build-ios.sh script for guidance.
130
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400131Configure has many other options. Use "configure --help" to see them all.
132
133Once configure has finished, type "make". Note that you must be using
134GNU make. You can ftp GNU make from prep.ai.mit.edu:/pub/gnu.
135
136To ensure that libffi is working as advertised, type "make check".
137This will require that you have DejaGNU installed.
138
139To install the library and header files, type "make install".
140
141
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400142History
143=======
144
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500145See the ChangeLog files for details.
146
Anthony Green7b7a42f2010-01-12 09:14:14 -05001473.0.10 ???-??-??
Anthony Green24b72072011-02-14 15:30:57 -0500148
149 Add support for Apple's iOS, 64-bit PowerPC OSX, IBM's OS/2,
150 and more. See table for details.
151 Add support for native vendor compilers for AIX, IRIX, Solaris
152 and Windows.
Anthony Green1fbf9dc2011-02-13 08:06:39 -0500153 Add support for ARM VFP ABI.
Anthony Green630b9c02011-02-09 06:24:23 -0500154 Add RTEMS support for MIPS and M68K.
Anthony Green2db72612010-11-21 10:50:56 -0500155 Fix the N64 build on mips-sgi-irix6.5.
Anthony Green24b72072011-02-14 15:30:57 -0500156 Remove debugging code from non-debug build.
Anthony Greene2214f82011-02-08 19:22:56 -0500157 Fix support for calling code compiled with Oracle's Sparc
Anthony Green24b72072011-02-14 15:30:57 -0500158 Solaris compiler from a GCC compiled libffi.
159 Many minor bug and testsuite fixes.
Anthony Green2db72612010-11-21 10:50:56 -0500160
Anthony Green2e7e03d2009-12-31 07:43:22 -05001613.0.9 Dec-31-09
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500162 Add AVR32 and win64 ports. Add ARM softfp support.
163 Many fixes for AIX, Solaris, HP-UX, *BSD.
Anthony Green2e7e03d2009-12-31 07:43:22 -0500164 Several PowerPC and x86-64 bug fixes.
Anthony Green0cfe60e2009-12-29 10:06:04 -0500165 Build DLL for windows.
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500166
1673.0.8 Dec-19-08
168 Add *BSD, BeOS, and PA-Linux support.
169
Anthony Greenc6dddbd2009-10-04 08:11:33 -04001703.0.7 Nov-11-08
171 Fix for ppc FreeBSD.
172 (thanks to Andreas Tobler)
173
1743.0.6 Jul-17-08
175 Fix for closures on sh.
176 Mark the sh/sh64 stack as non-executable.
177 (both thanks to Kaz Kojima)
178
1793.0.5 Apr-3-08
180 Fix libffi.pc file.
181 Fix #define ARM for IcedTea users.
182 Fix x86 closure bug.
183
1843.0.4 Feb-24-08
185 Fix x86 OpenBSD configury.
186
1873.0.3 Feb-22-08
188 Enable x86 OpenBSD thanks to Thomas Heller, and
189 x86-64 FreeBSD thanks to Björn König and Andreas Tobler.
190 Clean up test instruction in README.
191
1923.0.2 Feb-21-08
193 Improved x86 FreeBSD support.
194 Thanks to Björn König.
195
1963.0.1 Feb-15-08
197 Fix instruction cache flushing bug on MIPS.
198 Thanks to David Daney.
199
2003.0.0 Feb-15-08
201 Many changes, mostly thanks to the GCC project.
202 Cygnus Solutions is now Red Hat.
203
204 [10 years go by...]
205
2061.20 Oct-5-98
207 Raffaele Sena produces ARM port.
208
2091.19 Oct-5-98
210 Fixed x86 long double and long long return support.
211 m68k bug fixes from Andreas Schwab.
212 Patch for DU assembler compatibility for the Alpha from Richard
213 Henderson.
214
2151.18 Apr-17-98
216 Bug fixes and MIPS configuration changes.
217
2181.17 Feb-24-98
219 Bug fixes and m68k port from Andreas Schwab. PowerPC port from
220 Geoffrey Keating. Various bug x86, Sparc and MIPS bug fixes.
221
2221.16 Feb-11-98
223 Richard Henderson produces Alpha port.
224
2251.15 Dec-4-97
226 Fixed an n32 ABI bug. New libtool, auto* support.
227
2281.14 May-13-97
229 libtool is now used to generate shared and static libraries.
230 Fixed a minor portability problem reported by Russ McManus
231 <mcmanr@eq.gs.com>.
232
2331.13 Dec-2-96
234 Added --enable-purify-safety to keep Purify from complaining
235 about certain low level code.
236 Sparc fix for calling functions with < 6 args.
237 Linux x86 a.out fix.
238
2391.12 Nov-22-96
240 Added missing ffi_type_void, needed for supporting void return
241 types. Fixed test case for non MIPS machines. Cygnus Support
242 is now Cygnus Solutions.
243
2441.11 Oct-30-96
245 Added notes about GNU make.
246
2471.10 Oct-29-96
248 Added configuration fix for non GNU compilers.
249
2501.09 Oct-29-96
251 Added --enable-debug configure switch. Clean-ups based on LCLint
252 feedback. ffi_mips.h is always installed. Many configuration
253 fixes. Fixed ffitest.c for sparc builds.
254
2551.08 Oct-15-96
256 Fixed n32 problem. Many clean-ups.
257
2581.07 Oct-14-96
259 Gordon Irlam rewrites v8.S again. Bug fixes.
260
2611.06 Oct-14-96
262 Gordon Irlam improved the sparc port.
263
2641.05 Oct-14-96
265 Interface changes based on feedback.
266
2671.04 Oct-11-96
268 Sparc port complete (modulo struct passing bug).
269
2701.03 Oct-10-96
271 Passing struct args, and returning struct values works for
272 all architectures/calling conventions. Expanded tests.
273
2741.02 Oct-9-96
275 Added SGI n32 support. Fixed bugs in both o32 and Linux support.
276 Added "make test".
277
2781.01 Oct-8-96
279 Fixed float passing bug in mips version. Restructured some
280 of the code. Builds cleanly with SGI tools.
281
2821.00 Oct-7-96
283 First release. No public announcement.
284
285
286Authors & Credits
287=================
288
Anthony Greenda11bec2009-12-24 05:34:46 -0500289libffi was originally written by Anthony Green <green@redhat.com>.
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400290
291The developers of the GNU Compiler Collection project have made
292innumerable valuable contributions. See the ChangeLog file for
293details.
294
295Some of the ideas behind libffi were inspired by Gianni Mariani's free
296gencall library for Silicon Graphics machines.
297
298The closure mechanism was designed and implemented by Kresten Krab
299Thorup.
300
301Major processor architecture ports were contributed by the following
302developers:
303
304alpha Richard Henderson
305arm Raffaele Sena
306cris Simon Posnjak, Hans-Peter Nilsson
307frv Anthony Green
308ia64 Hans Boehm
309m32r Kazuhiro Inaoka
310m68k Andreas Schwab
311mips Anthony Green, Casey Marshall
312mips64 David Daney
313pa Randolph Chung, Dave Anglin, Andreas Tobler
314powerpc Geoffrey Keating, Andreas Tobler,
315 David Edelsohn, John Hornkvist
316powerpc64 Jakub Jelinek
317s390 Gerhard Tonn, Ulrich Weigand
318sh Kaz Kojima
319sh64 Kaz Kojima
320sparc Anthony Green, Gordon Irlam
321x86 Anthony Green, Jon Beniston
322x86-64 Bo Thorsen
323
324Jesper Skov and Andrew Haley both did more than their fair share of
325stepping through the code and tracking down bugs.
326
327Thanks also to Tom Tromey for bug fixes, documentation and
328configuration help.
329
330Thanks to Jim Blandy, who provided some useful feedback on the libffi
331interface.
332
333Andreas Tobler has done a tremendous amount of work on the testsuite.
334
335Alex Oliva solved the executable page problem for SElinux.
336
337The list above is almost certainly incomplete and inaccurate. I'm
338happy to make corrections or additions upon request.
339
Anthony Green630b9c02011-02-09 06:24:23 -0500340If you have a problem, or have found a bug, please send a note to the
341author at green@moxielogic.com, or the project mailing list at
342libffi-discuss@sourceware.org.