This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: another libgcj build-process question
- From: Tom Tromey <tromey at redhat dot com>
- To: Adam Megacz <adam at megacz dot com>
- Cc: java at gcc dot gnu dot org
- Date: 10 Dec 2001 13:30:38 -0700
- Subject: Re: another libgcj build-process question
- References: <86n10qvnsw.fsf@megacz.com>
- Reply-to: tromey at redhat dot com
>>>>> "Adam" == Adam Megacz <adam@megacz.com> writes:
Adam> Okay, I'm *really* close to having something useful...
Wow, cool. Did you run into the case-insensitive-filesystem problems
with gcj?
Adam> Last problem is that my build isn't pulling all the nat*.o files
Adam> into libgcj.a when it invokes "ar". Can anybody tell me where
Adam> the "magic list 'o object files" is in the configure setup? I
Adam> found a "magic list 'o .cc files to compile" list in
Adam> Makefile.in, but no list of which ones to stuff into libgcj.a.
The `libgcj_la_SOURCES' macro in Makefile.am lists the files that go
in. It references $(nat_source_files).
This gets turned into libgcj_la_OBJECTS in Makefile.in. Automake does
the transformation.
libtool is responsible for taking this list and building libgcj.a.
Tom