blob: 7261f70d38cdb3b66973dd2fa2ca38c80e0ce86b [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 |
Anthony Greenf2c2a4f2010-04-13 10:19:28 -040078| X86 | OS/2 |
Anthony Green0cfe60e2009-12-29 10:06:04 -050079| X86 | Solaris |
80| X86 | Windows/Cygwin |
81| X86 | Windows/MingW |
82| X86-64 | FreeBSD |
83| X86-64 | Linux |
84| X86-64 | OpenBSD |
Anthony Green4b18d1f2010-01-01 10:24:27 -050085| X86-64 | Windows/MingW |
Anthony Green0cfe60e2009-12-29 10:06:04 -050086|--------------+------------------|
Anthony Green2e7e03d2009-12-31 07:43:22 -050087
Anthony Greenc6dddbd2009-10-04 08:11:33 -040088Please send additional platform test results to
Anthony Green0cfe60e2009-12-29 10:06:04 -050089libffi-discuss@sourceware.org and feel free to update the wiki page
90above.
Anthony Greenc6dddbd2009-10-04 08:11:33 -040091
92Installing libffi
93=================
94
Anthony Greenc6dddbd2009-10-04 08:11:33 -040095First you must configure the distribution for your particular
96system. Go to the directory you wish to build libffi in and run the
97"configure" program found in the root directory of the libffi source
98distribution.
99
100You may want to tell configure where to install the libffi library and
101header files. To do that, use the --prefix configure switch. Libffi
102will install under /usr/local by default.
103
104If you want to enable extra run-time debugging checks use the the
105--enable-debug configure switch. This is useful when your program dies
106mysteriously while using libffi.
107
108Another useful configure switch is --enable-purify-safety. Using this
109will add some extra code which will suppress certain warnings when you
110are using Purify with libffi. Only use this switch when using
111Purify, as it will slow down the library.
112
Anthony Greenff3cd682010-01-15 11:27:24 -0500113It's also possible to build libffi on Windows platforms with
114Microsoft's Visual C++ compiler. In this case, use the msvcc.sh
115wrapper script during configuration like so:
116
Anthony Green9dc9a292010-04-13 10:33:52 -0400117path/to/configure CC=path/to/msvcc.sh LD=link CPP=\"cl -nologo -EP\"
118
119For 64-bit Windows builds, use CC="path/to/msvcc.sh -m64".
120You may also need to specify --build appropriately. When building with MSVC
121under a MingW environment, you may need to remove the line in configure
122that sets 'fix_srcfile_path' to a 'cygpath' command. ('cygpath' is not
123present in MingW, and is not required when using MingW-style paths.)
Anthony Greenff3cd682010-01-15 11:27:24 -0500124
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400125Configure has many other options. Use "configure --help" to see them all.
126
127Once configure has finished, type "make". Note that you must be using
128GNU make. You can ftp GNU make from prep.ai.mit.edu:/pub/gnu.
129
130To ensure that libffi is working as advertised, type "make check".
131This will require that you have DejaGNU installed.
132
133To install the library and header files, type "make install".
134
135
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400136History
137=======
138
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500139See the ChangeLog files for details.
140
Anthony Green7b7a42f2010-01-12 09:14:14 -05001413.0.10 ???-??-??
Anthony Green2db72612010-11-21 10:50:56 -0500142 Fix the N64 build on mips-sgi-irix6.5.
Anthony Green7b7a42f2010-01-12 09:14:14 -0500143 Testsuite fixes for Tru64 Unix.
Anthony Green8d27f682010-01-15 11:35:37 -0500144 Enable builds with Microsoft's compiler.
145 Enable x86 builds with Sun's compiler.
Anthony Green7b7a42f2010-01-12 09:14:14 -0500146
Anthony Green2db72612010-11-21 10:50:56 -05001473.0.10 ???-??-??
148 Fix the N64 build on mips-sgi-irix6.5.
149 Testsuite fixes for Tru64 Unix.
150
Anthony Green2e7e03d2009-12-31 07:43:22 -05001513.0.9 Dec-31-09
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500152 Add AVR32 and win64 ports. Add ARM softfp support.
153 Many fixes for AIX, Solaris, HP-UX, *BSD.
Anthony Green2e7e03d2009-12-31 07:43:22 -0500154 Several PowerPC and x86-64 bug fixes.
Anthony Green0cfe60e2009-12-29 10:06:04 -0500155 Build DLL for windows.
Anthony Greenf7c0bc62009-12-25 01:22:11 -0500156
1573.0.8 Dec-19-08
158 Add *BSD, BeOS, and PA-Linux support.
159
Anthony Greenc6dddbd2009-10-04 08:11:33 -04001603.0.7 Nov-11-08
161 Fix for ppc FreeBSD.
162 (thanks to Andreas Tobler)
163
1643.0.6 Jul-17-08
165 Fix for closures on sh.
166 Mark the sh/sh64 stack as non-executable.
167 (both thanks to Kaz Kojima)
168
1693.0.5 Apr-3-08
170 Fix libffi.pc file.
171 Fix #define ARM for IcedTea users.
172 Fix x86 closure bug.
173
1743.0.4 Feb-24-08
175 Fix x86 OpenBSD configury.
176
1773.0.3 Feb-22-08
178 Enable x86 OpenBSD thanks to Thomas Heller, and
179 x86-64 FreeBSD thanks to Björn König and Andreas Tobler.
180 Clean up test instruction in README.
181
1823.0.2 Feb-21-08
183 Improved x86 FreeBSD support.
184 Thanks to Björn König.
185
1863.0.1 Feb-15-08
187 Fix instruction cache flushing bug on MIPS.
188 Thanks to David Daney.
189
1903.0.0 Feb-15-08
191 Many changes, mostly thanks to the GCC project.
192 Cygnus Solutions is now Red Hat.
193
194 [10 years go by...]
195
1961.20 Oct-5-98
197 Raffaele Sena produces ARM port.
198
1991.19 Oct-5-98
200 Fixed x86 long double and long long return support.
201 m68k bug fixes from Andreas Schwab.
202 Patch for DU assembler compatibility for the Alpha from Richard
203 Henderson.
204
2051.18 Apr-17-98
206 Bug fixes and MIPS configuration changes.
207
2081.17 Feb-24-98
209 Bug fixes and m68k port from Andreas Schwab. PowerPC port from
210 Geoffrey Keating. Various bug x86, Sparc and MIPS bug fixes.
211
2121.16 Feb-11-98
213 Richard Henderson produces Alpha port.
214
2151.15 Dec-4-97
216 Fixed an n32 ABI bug. New libtool, auto* support.
217
2181.14 May-13-97
219 libtool is now used to generate shared and static libraries.
220 Fixed a minor portability problem reported by Russ McManus
221 <mcmanr@eq.gs.com>.
222
2231.13 Dec-2-96
224 Added --enable-purify-safety to keep Purify from complaining
225 about certain low level code.
226 Sparc fix for calling functions with < 6 args.
227 Linux x86 a.out fix.
228
2291.12 Nov-22-96
230 Added missing ffi_type_void, needed for supporting void return
231 types. Fixed test case for non MIPS machines. Cygnus Support
232 is now Cygnus Solutions.
233
2341.11 Oct-30-96
235 Added notes about GNU make.
236
2371.10 Oct-29-96
238 Added configuration fix for non GNU compilers.
239
2401.09 Oct-29-96
241 Added --enable-debug configure switch. Clean-ups based on LCLint
242 feedback. ffi_mips.h is always installed. Many configuration
243 fixes. Fixed ffitest.c for sparc builds.
244
2451.08 Oct-15-96
246 Fixed n32 problem. Many clean-ups.
247
2481.07 Oct-14-96
249 Gordon Irlam rewrites v8.S again. Bug fixes.
250
2511.06 Oct-14-96
252 Gordon Irlam improved the sparc port.
253
2541.05 Oct-14-96
255 Interface changes based on feedback.
256
2571.04 Oct-11-96
258 Sparc port complete (modulo struct passing bug).
259
2601.03 Oct-10-96
261 Passing struct args, and returning struct values works for
262 all architectures/calling conventions. Expanded tests.
263
2641.02 Oct-9-96
265 Added SGI n32 support. Fixed bugs in both o32 and Linux support.
266 Added "make test".
267
2681.01 Oct-8-96
269 Fixed float passing bug in mips version. Restructured some
270 of the code. Builds cleanly with SGI tools.
271
2721.00 Oct-7-96
273 First release. No public announcement.
274
275
276Authors & Credits
277=================
278
Anthony Greenda11bec2009-12-24 05:34:46 -0500279libffi was originally written by Anthony Green <green@redhat.com>.
Anthony Greenc6dddbd2009-10-04 08:11:33 -0400280
281The developers of the GNU Compiler Collection project have made
282innumerable valuable contributions. See the ChangeLog file for
283details.
284
285Some of the ideas behind libffi were inspired by Gianni Mariani's free
286gencall library for Silicon Graphics machines.
287
288The closure mechanism was designed and implemented by Kresten Krab
289Thorup.
290
291Major processor architecture ports were contributed by the following
292developers:
293
294alpha Richard Henderson
295arm Raffaele Sena
296cris Simon Posnjak, Hans-Peter Nilsson
297frv Anthony Green
298ia64 Hans Boehm
299m32r Kazuhiro Inaoka
300m68k Andreas Schwab
301mips Anthony Green, Casey Marshall
302mips64 David Daney
303pa Randolph Chung, Dave Anglin, Andreas Tobler
304powerpc Geoffrey Keating, Andreas Tobler,
305 David Edelsohn, John Hornkvist
306powerpc64 Jakub Jelinek
307s390 Gerhard Tonn, Ulrich Weigand
308sh Kaz Kojima
309sh64 Kaz Kojima
310sparc Anthony Green, Gordon Irlam
311x86 Anthony Green, Jon Beniston
312x86-64 Bo Thorsen
313
314Jesper Skov and Andrew Haley both did more than their fair share of
315stepping through the code and tracking down bugs.
316
317Thanks also to Tom Tromey for bug fixes, documentation and
318configuration help.
319
320Thanks to Jim Blandy, who provided some useful feedback on the libffi
321interface.
322
323Andreas Tobler has done a tremendous amount of work on the testsuite.
324
325Alex Oliva solved the executable page problem for SElinux.
326
327The list above is almost certainly incomplete and inaccurate. I'm
328happy to make corrections or additions upon request.
329
330If you have a problem, or have found a bug, please send a note to
331green@redhat.com.