You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ken 22abc7086e Initial commit 4 years ago
..
doc Initial commit 4 years ago
include Initial commit 4 years ago
libffi.xcodeproj Initial commit 4 years ago
m4 Initial commit 4 years ago
man Initial commit 4 years ago
src Initial commit 4 years ago
testsuite Initial commit 4 years ago
.gitignore Initial commit 4 years ago
.travis.yml Initial commit 4 years ago
ChangeLog.libffi Initial commit 4 years ago
ChangeLog.libffi-3.1 Initial commit 4 years ago
ChangeLog.libgcj Initial commit 4 years ago
ChangeLog.v1 Initial commit 4 years ago
LICENSE Initial commit 4 years ago
Makefile.am Initial commit 4 years ago
README Initial commit 4 years ago
acinclude.m4 Initial commit 4 years ago
autogen.sh Initial commit 4 years ago
configure.ac Initial commit 4 years ago
configure.host Initial commit 4 years ago
generate-darwin-source-and-headers.py Initial commit 4 years ago
libffi.pc.in Initial commit 4 years ago
libtool-version Initial commit 4 years ago
msvcc.sh Initial commit 4 years ago
stamp-h.in Initial commit 4 years ago
texinfo.tex Initial commit 4 years ago

README

Status
======

libffi-4?? was released on TBD. Check the libffi web
page for updates: <URL:http://sourceware.org/libffi/>.


What is libffi?
===============

Compilers for high level languages generate code that follow certain
conventions. These conventions are necessary, in part, for separate
compilation to work. One such convention is the "calling
convention". The "calling convention" is essentially a set of
assumptions made by the compiler about where function arguments will
be found on entry to a function. A "calling convention" also specifies
where the return value for a function is found.

Some programs may not know at the time of compilation what arguments
are to be passed to a function. For instance, an interpreter may be
told at run-time about the number and types of arguments used to call
a given function. Libffi can be used in such programs to provide a
bridge from the interpreter program to compiled code.

The libffi library provides a portable, high level programming
interface to various calling