This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: NewBie question: Segmentation faults
- To: green at redhat dot com
- Subject: Re: NewBie question: Segmentation faults
- From: Alexis Denis <adenis at EE dot UManitoba dot CA>
- Date: Sun, 20 Feb 2000 09:11:51 -0600 (CST)
- Cc: adenis at EE dot UManitoba dot CA, tromey at cygnus dot com, bryce at albatross dot co dot nz, java-discuss at sourceware dot cygnus dot com
>
>
> Alexis wrote:
> > I am now using egcs snapshot 20000214, in the last linking stages I from
> > libgcj-snapshot-2000-02-18 I still get:
>
> Look in your build directory. Do you have
> powerpc-unknown-linux-gnu/libffi/.libs/libffi.a?
Hi Anthony,
ls powerpc-unknown-linux-gnu/libffi/.libs/
ffitest libffi-2.00-beta.so libffi.a libffi.la libffi.lai libffi.so
However, I looked in the generated powerpc-unknown-linux-gnu/libffi/include/ffi.h and there is:
/* These are defined in ffi.c */
extern ffi_type ffi_type_void;
extern ffi_type ffi_type_uint8;
extern ffi_type ffi_type_sint8;
extern ffi_type ffi_type_uint16;
extern ffi_type ffi_type_sint16;
extern ffi_type ffi_type_uint32;
extern ffi_type ffi_type_sint32;
extern ffi_type ffi_type_uint64;
extern ffi_type ffi_type_sint64;
extern ffi_type ffi_type_float;
extern ffi_type ffi_type_double;
extern ffi_type ffi_type_longdouble;
extern ffi_type ffi_type_pointer;
However, there is no mention of those variables in libgcj-snapshot-2000-02-18/libffi/src/powerpc/ffi.c
Alexis