Update version to 3.1-rc0. Clean up README.
[platform/upstream/libffi.git] / README
1 Status
2 ======
3
4 libffi-3.1 was released on TBD.  Check the libffi web
5 page for updates: <URL:http://sourceware.org/libffi/>.
6
7
8 What is libffi?
9 ===============
10
11 Compilers for high level languages generate code that follow certain
12 conventions. These conventions are necessary, in part, for separate
13 compilation to work. One such convention is the "calling
14 convention". The "calling convention" is essentially a set of
15 assumptions made by the compiler about where function arguments will
16 be found on entry to a function. A "calling convention" also specifies
17 where the return value for a function is found.
18
19 Some programs may not know at the time of compilation what arguments
20 are to be passed to a function. For instance, an interpreter may be
21 told at run-time about the number and types of arguments used to call
22 a given function. Libffi can be used in such programs to provide a
23 bridge from the interpreter program to compiled code.
24
25 The libffi library provides a portable, high level programming
26 interface to various calling conventions. This allows a programmer to
27 call any function specified by a call interface description at run
28 time.  
29
30 FFI stands for Foreign Function Interface.  A foreign function
31 interface is the popular name for the interface that allows code
32 written in one language to call code written in another language. The
33 libffi library really only provides the lowest, machine dependent
34 layer of a fully featured foreign function interface. A layer must
35 exist above libffi that handles type conversions for values passed
36 between the two languages.
37
38
39 Supported Platforms
40 ===================
41
42 Libffi has been ported to many different platforms.
43 For specific configuration details and testing status, please
44 refer to the wiki page here:
45
46  http://www.moxielogic.org/wiki/index.php?title=Libffi_3.0.13
47
48 At the time of release, the following basic configurations have been
49 tested:
50
51 |-----------------+------------------+-------------------------|
52 | Architecture    | Operating System | Compiler                |
53 |-----------------+------------------+-------------------------|
54 | AArch64 (ARM64) | iOS              | Clang                   |
55 | AArch64         | Linux            | GCC                     |
56 | Alpha           | Linux            | GCC                     |
57 | Alpha           | Tru64            | GCC                     |
58 | ARC             | Linux            | GCC                     |
59 | ARM             | Linux            | GCC                     |
60 | ARM             | iOS              | GCC                     |
61 | AVR32           | Linux            | GCC                     |
62 | Blackfin        | uClinux          | GCC                     |
63 | HPPA            | HPUX             | GCC                     |
64 | IA-64           | Linux            | GCC                     |
65 | M68K            | FreeMiNT         | GCC                     |
66 | M68K            | Linux            | GCC                     |
67 | M68K            | RTEMS            | GCC                     |
68 | M88K            | OpenBSD/mvme88k  | GCC                     |
69 | Meta            | Linux            | GCC                     |
70 | MicroBlaze      | Linux            | GCC                     |
71 | MIPS            | IRIX             | GCC                     |
72 | MIPS            | Linux            | GCC                     |
73 | MIPS            | RTEMS            | GCC                     |
74 | MIPS64          | Linux            | GCC                     |
75 | Moxie           | Bare metal       | GCC                     |
76 | Nios II         | Linux            | GCC                     |
77 | PowerPC 32-bit  | AIX              | IBM XL C                |
78 | PowerPC 64-bit  | AIX              | IBM XL C                |
79 | PowerPC         | AMIGA            | GCC                     |
80 | PowerPC         | Linux            | GCC                     |
81 | PowerPC         | Mac OSX          | GCC                     |
82 | PowerPC         | FreeBSD          | GCC                     |
83 | PowerPC 64-bit  | FreeBSD          | GCC                     |
84 | PowerPC 64-bit  | Linux ELFv1      | GCC                     |
85 | PowerPC 64-bit  | Linux ELFv2      | GCC                     |
86 | S390            | Linux            | GCC                     |
87 | S390X           | Linux            | GCC                     |
88 | SPARC           | Linux            | GCC                     |
89 | SPARC           | Solaris          | GCC                     |
90 | SPARC           | Solaris          | Oracle Solaris Studio C |
91 | SPARC64         | Linux            | GCC                     |
92 | SPARC64         | FreeBSD          | GCC                     |
93 | SPARC64         | Solaris          | Oracle Solaris Studio C |
94 | TILE-Gx/TILEPro | Linux            | GCC                     |
95 | VAX             | OpenBSD/vax      | GCC                     |
96 | X86             | FreeBSD          | GCC                     |
97 | X86             | GNU HURD         | GCC                     |
98 | X86             | Interix          | GCC                     |
99 | X86             | kFreeBSD         | GCC                     |
100 | X86             | Linux            | GCC                     |
101 | X86             | Mac OSX          | GCC                     |
102 | X86             | OpenBSD          | GCC                     |
103 | X86             | OS/2             | GCC                     |
104 | X86             | Solaris          | GCC                     |
105 | X86             | Solaris          | Oracle Solaris Studio C |
106 | X86             | Windows/Cygwin   | GCC                     |
107 | X86             | Windows/MingW    | GCC                     |
108 | X86-64          | FreeBSD          | GCC                     |
109 | X86-64          | Linux            | GCC                     |
110 | X86-64          | Linux/x32        | GCC                     |
111 | X86-64          | OpenBSD          | GCC                     |
112 | X86-64          | Solaris          | Oracle Solaris Studio C |
113 | X86-64          | Windows/MingW    | GCC                     |
114 | Xtensa          | Linux            | GCC                     |
115 |-----------------+------------------+-------------------------|
116
117 Please send additional platform test results to
118 libffi-discuss@sourceware.org and feel free to update the wiki page
119 above.
120
121 Installing libffi
122 =================
123
124 First you must configure the distribution for your particular
125 system. Go to the directory you wish to build libffi in and run the
126 "configure" program found in the root directory of the libffi source
127 distribution.
128
129 If you're building libffi directly from version control, configure won't
130 exist yet; run ./autogen.sh first.
131
132 You may want to tell configure where to install the libffi library and
133 header files. To do that, use the --prefix configure switch.  Libffi
134 will install under /usr/local by default. 
135
136 If you want to enable extra run-time debugging checks use the the
137 --enable-debug configure switch. This is useful when your program dies
138 mysteriously while using libffi. 
139
140 Another useful configure switch is --enable-purify-safety. Using this
141 will add some extra code which will suppress certain warnings when you
142 are using Purify with libffi. Only use this switch when using 
143 Purify, as it will slow down the library.
144
145 It's also possible to build libffi on Windows platforms with
146 Microsoft's Visual C++ compiler.  In this case, use the msvcc.sh
147 wrapper script during configuration like so:
148
149 path/to/configure CC=path/to/msvcc.sh LD=link CPP=\"cl -nologo -EP\"
150
151 For 64-bit Windows builds, use CC="path/to/msvcc.sh -m64".
152 You may also need to specify --build appropriately. When building with MSVC
153 under a MingW environment, you may need to remove the line in configure
154 that sets 'fix_srcfile_path' to a 'cygpath' command. ('cygpath' is not
155 present in MingW, and is not required when using MingW-style paths.)
156
157 For iOS builds, the 'libffi.xcodeproj' Xcode project is available.
158
159 Configure has many other options. Use "configure --help" to see them all.
160
161 Once configure has finished, type "make". Note that you must be using
162 GNU make.  You can ftp GNU make from ftp.gnu.org:/pub/gnu/make .
163
164 To ensure that libffi is working as advertised, type "make check".
165 This will require that you have DejaGNU installed.
166
167 To install the library and header files, type "make install".
168
169
170 History
171 =======
172
173 See the git log for details.
174
175 3.1 TBD
176         Archive off the manually maintained ChangeLog in favor of git log.
177         Add AArch64 (ARM64) iOS support.
178         Add Nios II support.
179         Add m88k and DEC VAX support.
180         Add support for stdcall, thiscall, and fastcall on non-Windows
181           32-bit x86 targets such as Linux.
182         Make the testsuite more robust: eliminated several spurious
183           failures.
184         Android build fix.
185         Fix MIPS N32 ABI bug.
186         Various x86, FreeBSD and UltraSPARC IIi fixes.
187
188 3.0.13 Mar-17-13
189         Add Meta support.
190         Add missing Moxie bits.
191         Fix stack alignment bug on 32-bit x86.
192         Build fix for m68000 targets.
193         Build fix for soft-float Power targets.
194         Fix the install dir location for some platforms when building
195           with GCC (OS X, Solaris).
196         Fix Cygwin regression.
197
198 3.0.12 Feb-11-13
199         Add Moxie support.
200         Add AArch64 support.
201         Add Blackfin support.
202         Add TILE-Gx/TILEPro support.
203         Add MicroBlaze support.
204         Add Xtensa support.
205         Add support for PaX enabled kernels with MPROTECT.
206         Add support for native vendor compilers on
207           Solaris and AIX.
208         Work around LLVM/GCC interoperability issue on x86_64.
209
210 3.0.11 Apr-11-12
211         Lots of build fixes.
212         Add support for variadic functions (ffi_prep_cif_var).
213         Add Linux/x32 support.
214         Add thiscall, fastcall and MSVC cdecl support on Windows.
215         Add Amiga and newer MacOS support.
216         Add m68k FreeMiNT support.
217         Integration with iOS' xcode build tools.
218         Fix Octeon and MC68881 support.
219         Fix code pessimizations.
220
221 3.0.10 Aug-23-11
222         Add support for Apple's iOS.
223         Add support for ARM VFP ABI.
224         Add RTEMS support for MIPS and M68K.
225         Fix instruction cache clearing problems on
226           ARM and SPARC.
227         Fix the N64 build on mips-sgi-irix6.5.
228         Enable builds with Microsoft's compiler.
229         Enable x86 builds with Oracle's Solaris compiler.
230         Fix support for calling code compiled with Oracle's Sparc
231           Solaris compiler.
232         Testsuite fixes for Tru64 Unix.
233         Additional platform support.
234
235 3.0.9 Dec-31-09
236         Add AVR32 and win64 ports.  Add ARM softfp support.
237         Many fixes for AIX, Solaris, HP-UX, *BSD.
238         Several PowerPC and x86-64 bug fixes.
239         Build DLL for windows.
240
241 3.0.8 Dec-19-08
242         Add *BSD, BeOS, and PA-Linux support.
243
244 3.0.7 Nov-11-08
245         Fix for ppc FreeBSD.
246         (thanks to Andreas Tobler)
247
248 3.0.6 Jul-17-08
249         Fix for closures on sh.
250         Mark the sh/sh64 stack as non-executable.
251         (both thanks to Kaz Kojima)
252
253 3.0.5 Apr-3-08
254         Fix libffi.pc file.
255         Fix #define ARM for IcedTea users.
256         Fix x86 closure bug.
257
258 3.0.4 Feb-24-08
259         Fix x86 OpenBSD configury.
260
261 3.0.3 Feb-22-08
262         Enable x86 OpenBSD thanks to Thomas Heller, and
263         x86-64 FreeBSD thanks to Björn König and Andreas Tobler.
264         Clean up test instruction in README.
265
266 3.0.2 Feb-21-08
267         Improved x86 FreeBSD support.
268         Thanks to Björn König.
269
270 3.0.1 Feb-15-08
271         Fix instruction cache flushing bug on MIPS.
272         Thanks to David Daney.
273
274 3.0.0 Feb-15-08
275         Many changes, mostly thanks to the GCC project.
276         Cygnus Solutions is now Red Hat.
277
278   [10 years go by...]
279
280 1.20 Oct-5-98
281         Raffaele Sena produces ARM port.
282
283 1.19 Oct-5-98
284         Fixed x86 long double and long long return support.
285         m68k bug fixes from Andreas Schwab.
286         Patch for DU assembler compatibility for the Alpha from Richard
287         Henderson.
288
289 1.18 Apr-17-98
290         Bug fixes and MIPS configuration changes.
291
292 1.17 Feb-24-98
293         Bug fixes and m68k port from Andreas Schwab. PowerPC port from
294         Geoffrey Keating. Various bug x86, Sparc and MIPS bug fixes.
295
296 1.16 Feb-11-98
297         Richard Henderson produces Alpha port.
298
299 1.15 Dec-4-97
300         Fixed an n32 ABI bug. New libtool, auto* support.
301
302 1.14 May-13-97
303         libtool is now used to generate shared and static libraries.
304         Fixed a minor portability problem reported by Russ McManus
305         <mcmanr@eq.gs.com>.
306
307 1.13 Dec-2-96
308         Added --enable-purify-safety to keep Purify from complaining
309         about certain low level code.
310         Sparc fix for calling functions with < 6 args.
311         Linux x86 a.out fix.
312
313 1.12 Nov-22-96
314         Added missing ffi_type_void, needed for supporting void return 
315         types. Fixed test case for non MIPS machines. Cygnus Support 
316         is now Cygnus Solutions. 
317
318 1.11 Oct-30-96
319         Added notes about GNU make.
320
321 1.10 Oct-29-96
322         Added configuration fix for non GNU compilers.
323
324 1.09 Oct-29-96
325         Added --enable-debug configure switch. Clean-ups based on LCLint 
326         feedback. ffi_mips.h is always installed. Many configuration 
327         fixes. Fixed ffitest.c for sparc builds.
328
329 1.08 Oct-15-96
330         Fixed n32 problem. Many clean-ups.
331
332 1.07 Oct-14-96
333         Gordon Irlam rewrites v8.S again. Bug fixes.
334
335 1.06 Oct-14-96
336         Gordon Irlam improved the sparc port. 
337
338 1.05 Oct-14-96
339         Interface changes based on feedback.
340
341 1.04 Oct-11-96
342         Sparc port complete (modulo struct passing bug).
343
344 1.03 Oct-10-96
345         Passing struct args, and returning struct values works for
346         all architectures/calling conventions. Expanded tests.
347
348 1.02 Oct-9-96
349         Added SGI n32 support. Fixed bugs in both o32 and Linux support.
350         Added "make test".
351
352 1.01 Oct-8-96
353         Fixed float passing bug in mips version. Restructured some
354         of the code. Builds cleanly with SGI tools.
355
356 1.00 Oct-7-96
357         First release. No public announcement.
358
359
360 Authors & Credits
361 =================
362
363 libffi was originally written by Anthony Green <green@moxielogic.com>.
364
365 The developers of the GNU Compiler Collection project have made
366 innumerable valuable contributions.  See the ChangeLog file for
367 details.
368
369 Some of the ideas behind libffi were inspired by Gianni Mariani's free
370 gencall library for Silicon Graphics machines.
371
372 The closure mechanism was designed and implemented by Kresten Krab
373 Thorup.
374
375 Major processor architecture ports were contributed by the following
376 developers:
377
378 aarch64         Marcus Shawcroft, James Greenhalgh
379 alpha           Richard Henderson
380 arm             Raffaele Sena
381 blackfin        Alexandre Keunecke I. de Mendonca
382 cris            Simon Posnjak, Hans-Peter Nilsson
383 frv             Anthony Green
384 ia64            Hans Boehm
385 m32r            Kazuhiro Inaoka
386 m68k            Andreas Schwab
387 m88k            Miod Vallat
388 microblaze      Nathan Rossi
389 mips            Anthony Green, Casey Marshall
390 mips64          David Daney
391 moxie           Anthony Green
392 nios ii         Sandra Loosemore
393 pa              Randolph Chung, Dave Anglin, Andreas Tobler
394 powerpc         Geoffrey Keating, Andreas Tobler, 
395                          David Edelsohn, John Hornkvist
396 powerpc64       Jakub Jelinek
397 s390            Gerhard Tonn, Ulrich Weigand
398 sh              Kaz Kojima
399 sh64            Kaz Kojima
400 sparc           Anthony Green, Gordon Irlam
401 tile-gx/tilepro Walter Lee
402 vax             Miod Vallat
403 x86             Anthony Green, Jon Beniston
404 x86-64          Bo Thorsen
405 xtensa          Chris Zankel
406
407 Jesper Skov and Andrew Haley both did more than their fair share of
408 stepping through the code and tracking down bugs.
409
410 Thanks also to Tom Tromey for bug fixes, documentation and
411 configuration help.
412
413 Thanks to Jim Blandy, who provided some useful feedback on the libffi
414 interface.
415
416 Andreas Tobler has done a tremendous amount of work on the testsuite.
417
418 Alex Oliva solved the executable page problem for SElinux.
419
420 The list above is almost certainly incomplete and inaccurate.  I'm
421 happy to make corrections or additions upon request.
422
423 If you have a problem, or have found a bug, please send a note to the
424 author at green@moxielogic.com, or the project mailing list at
425 libffi-discuss@sourceware.org.