blob: 8a03bf99c4451181e0b252ee951c50fecb0cc274 [file] [log] [blame]
Anthony Greenc6dddbd2009-10-04 08:11:33 -04001Status
2======
3
Anthony Green4b18d1f2010-01-01 10:24:27 -05004libffi-3.0.10 was released on XXXXXXXXXX, 2010. 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 |
57| AVR32 | Linux |
58| HPPA | HPUX |
59| IA-64 | Linux |
60| MIPS | IRIX |
61| MIPS | Linux |
62| MIPS64 | Linux |
63| PowerPC | Linux |
64| PowerPC | Mac OSX |
65| PowerPC | FreeBSD |
66| PowerPC64 | Linux |
67| S390 | Linux |
68| S390X | Linux |
69| SPARC | Linux |
70| SPARC | Solaris |
71| SPARC64 | Linux |
72| SPARC64 | FreeBSD |
73| X86 | FreeBSD |
74| X86 | kFreeBSD |
75| X86 | Linux |
76| X86 | Mac OSX |
77| X86 | OpenBSD |
78| X86 | Solaris |
79| X86 | Windows/Cygwin |
80| X86 | Windows/MingW |
81| X86-64 | FreeBSD |
82| X86-64 | Linux |
83| X86-64 | OpenBSD |
Anthony Green4b18d1f2010-01-01 10:24:27 -050084| X86-64 | Windows/MingW |
Anthony Green0cfe60e2009-12-29 10:06:04 -050085|--------------+------------------|
Anthony Green2e7e03d2009-12-31 07:43:22 -050086
Anthony Greenc6dddbd2009-10-04 08:11:33 -040087Please send additional platform test results to
Anthony Green0cfe60e2009-12-29 10:06:04 -050088libffi-discuss@sourceware.org and feel free to update the wiki page
89above.
Anthony Greenc6dddbd2009-10-04 08:11:33 -040090
91Installing libffi
92=================
93
Anthony Greenc6dddbd2009-10-04 08:11:33 -040094First you must configure the distribution for your particular
95system. Go to the directory you wish to build libffi in and run the
96"configure" program found in the root directory of the libffi source
97distribution.
98
99You may want to tell configure where to install the libffi library and
100header files. To do that, use the --prefix configure switch. Libffi
101will install under /usr/local by default.
102
103If you want to enable extra run-time debugging checks use the the
104--enable-debug configure switch. This is useful when your program dies
105mysteriously while using libffi.
106
107Another useful configure switch is --enable-purify-safety. Using this
108will add some extra code which will suppress certain warnings when you
109are using Purify with libffi. Only use this switch when using
110Purify, as it will slow down the library.
111
112Configure has many other options. Use "configure --help" to see them all.
113
114Once configure has finished, type "make". Note that you must be using
115GNU make. You can ftp GNU make from prep.ai.mit.edu:/pub/gnu.
116
117To ensure that libffi is working as advertised, type "make check".
118This will require that you have DejaGNU installed.
119
120To install the library and header files, type "make install".
121
122
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400123History
124=======
125
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500126See the ChangeLog files for details.
127
Anthony Green7b7a42f2010-01-12 09:14:14 -05001283.0.10 ???-??-??
129 Fix the N64 build on mips-sgi-irix6.5.
130 Testsuite fixes for Tru64 Unix.
131
Anthony Green2e7e03d2009-12-31 07:43:22 -05001323.0.9 Dec-31-09
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500133 Add AVR32 and win64 ports. Add ARM softfp support.
134 Many fixes for AIX, Solaris, HP-UX, *BSD.
Anthony Green2e7e03d2009-12-31 07:43:22 -0500135 Several PowerPC and x86-64 bug fixes.
Anthony Green0cfe60e2009-12-29 10:06:04 -0500136 Build DLL for windows.
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500137
1383.0.8 Dec-19-08
139 Add *BSD, BeOS, and PA-Linux support.
140
Anthony Greenc6dddbd2009-10-04 08:11:33 -04001413.0.7 Nov-11-08
142 Fix for ppc FreeBSD.
143 (thanks to Andreas Tobler)
144
1453.0.6 Jul-17-08
146 Fix for closures on sh.
147 Mark the sh/sh64 stack as non-executable.
148 (both thanks to Kaz Kojima)
149
1503.0.5 Apr-3-08
151 Fix libffi.pc file.
152 Fix #define ARM for IcedTea users.
153 Fix x86 closure bug.
154
1553.0.4 Feb-24-08
156 Fix x86 OpenBSD configury.
157
1583.0.3 Feb-22-08
159 Enable x86 OpenBSD thanks to Thomas Heller, and
160 x86-64 FreeBSD thanks to Björn König and Andreas Tobler.
161 Clean up test instruction in README.
162
1633.0.2 Feb-21-08
164 Improved x86 FreeBSD support.
165 Thanks to Björn König.
166
1673.0.1 Feb-15-08
168 Fix instruction cache flushing bug on MIPS.
169 Thanks to David Daney.
170
1713.0.0 Feb-15-08
172 Many changes, mostly thanks to the GCC project.
173 Cygnus Solutions is now Red Hat.
174
175 [10 years go by...]
176
1771.20 Oct-5-98
178 Raffaele Sena produces ARM port.
179
1801.19 Oct-5-98
181 Fixed x86 long double and long long return support.
182 m68k bug fixes from Andreas Schwab.
183 Patch for DU assembler compatibility for the Alpha from Richard
184 Henderson.
185
1861.18 Apr-17-98
187 Bug fixes and MIPS configuration changes.
188
1891.17 Feb-24-98
190 Bug fixes and m68k port from Andreas Schwab. PowerPC port from
191 Geoffrey Keating. Various bug x86, Sparc and MIPS bug fixes.
192
1931.16 Feb-11-98
194 Richard Henderson produces Alpha port.
195
1961.15 Dec-4-97
197 Fixed an n32 ABI bug. New libtool, auto* support.
198
1991.14 May-13-97
200 libtool is now used to generate shared and static libraries.
201 Fixed a minor portability problem reported by Russ McManus
202 <mcmanr@eq.gs.com>.
203
2041.13 Dec-2-96
205 Added --enable-purify-safety to keep Purify from complaining
206 about certain low level code.
207 Sparc fix for calling functions with < 6 args.
208 Linux x86 a.out fix.
209
2101.12 Nov-22-96
211 Added missing ffi_type_void, needed for supporting void return
212 types. Fixed test case for non MIPS machines. Cygnus Support
213 is now Cygnus Solutions.
214
2151.11 Oct-30-96
216 Added notes about GNU make.
217
2181.10 Oct-29-96
219 Added configuration fix for non GNU compilers.
220
2211.09 Oct-29-96
222 Added --enable-debug configure switch. Clean-ups based on LCLint
223 feedback. ffi_mips.h is always installed. Many configuration
224 fixes. Fixed ffitest.c for sparc builds.
225
2261.08 Oct-15-96
227 Fixed n32 problem. Many clean-ups.
228
2291.07 Oct-14-96
230 Gordon Irlam rewrites v8.S again. Bug fixes.
231
2321.06 Oct-14-96
233 Gordon Irlam improved the sparc port.
234
2351.05 Oct-14-96
236 Interface changes based on feedback.
237
2381.04 Oct-11-96
239 Sparc port complete (modulo struct passing bug).
240
2411.03 Oct-10-96
242 Passing struct args, and returning struct values works for
243 all architectures/calling conventions. Expanded tests.
244
2451.02 Oct-9-96
246 Added SGI n32 support. Fixed bugs in both o32 and Linux support.
247 Added "make test".
248
2491.01 Oct-8-96
250 Fixed float passing bug in mips version. Restructured some
251 of the code. Builds cleanly with SGI tools.
252
2531.00 Oct-7-96
254 First release. No public announcement.
255
256
257Authors & Credits
258=================
259
Anthony Greenda11bec2009-12-24 05:34:46 -0500260libffi was originally written by Anthony Green <green@redhat.com>.
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400261
262The developers of the GNU Compiler Collection project have made
263innumerable valuable contributions. See the ChangeLog file for
264details.
265
266Some of the ideas behind libffi were inspired by Gianni Mariani's free
267gencall library for Silicon Graphics machines.
268
269The closure mechanism was designed and implemented by Kresten Krab
270Thorup.
271
272Major processor architecture ports were contributed by the following
273developers:
274
275alpha Richard Henderson
276arm Raffaele Sena
277cris Simon Posnjak, Hans-Peter Nilsson
278frv Anthony Green
279ia64 Hans Boehm
280m32r Kazuhiro Inaoka
281m68k Andreas Schwab
282mips Anthony Green, Casey Marshall
283mips64 David Daney
284pa Randolph Chung, Dave Anglin, Andreas Tobler
285powerpc Geoffrey Keating, Andreas Tobler,
286 David Edelsohn, John Hornkvist
287powerpc64 Jakub Jelinek
288s390 Gerhard Tonn, Ulrich Weigand
289sh Kaz Kojima
290sh64 Kaz Kojima
291sparc Anthony Green, Gordon Irlam
292x86 Anthony Green, Jon Beniston
293x86-64 Bo Thorsen
294
295Jesper Skov and Andrew Haley both did more than their fair share of
296stepping through the code and tracking down bugs.
297
298Thanks also to Tom Tromey for bug fixes, documentation and
299configuration help.
300
301Thanks to Jim Blandy, who provided some useful feedback on the libffi
302interface.
303
304Andreas Tobler has done a tremendous amount of work on the testsuite.
305
306Alex Oliva solved the executable page problem for SElinux.
307
308The list above is almost certainly incomplete and inaccurate. I'm
309happy to make corrections or additions upon request.
310
311If you have a problem, or have found a bug, please send a note to
312green@redhat.com.