mirror of git://gcc.gnu.org/git/gcc.git
* link.cc: Include ffi.h if USE_LIBFFI defined.
From-SVN: r111815
This commit is contained in:
parent
3577e3eafb
commit
1cfdf07f8e
|
@ -1,3 +1,7 @@
|
||||||
|
2006-03-07 David Daney <ddaney@avtrex.com>
|
||||||
|
|
||||||
|
* link.cc: Include ffi.h if USE_LIBFFI defined.
|
||||||
|
|
||||||
2006-03-03 Tom Tromey <tromey@redhat.com>
|
2006-03-03 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* interpret.cc (do_allocate_static_fields): Added comment.
|
* interpret.cc (do_allocate_static_fields): Added comment.
|
||||||
|
|
|
@ -15,6 +15,10 @@ details. */
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifdef USE_LIBFFI
|
||||||
|
#include <ffi.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <java-interp.h>
|
#include <java-interp.h>
|
||||||
|
|
||||||
#include <jvm.h>
|
#include <jvm.h>
|
||||||
|
|
Loading…
Reference in New Issue