This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: building from cvs
On Sat, Jan 24, 2004 at 11:12:05PM +0100, Jakob Praher wrote:
> hi Michael,
>
> thanks for your prompt reply.
>
> > What platform are you working on ? x86 ?
> > What configure options have you used ?
> > Perhaps you got just a bad state from cvs. Have you tried updating ?
> >
> > I compile and use gcc CVS trunk on a dialy basis on x86 since a long
> > time.
>
> I use Sid GNU/Debian x86.
> How is your checkout and build procedure.?
Should work. I normally use Debian GNU/Linux testing.
> I checked out everything.
> $ cvs -z 9 co gcc
Perhaps try to update your snapshot:
cd gcc
cvs -z 9 update
> then I did
> $ cd gcc
> $ ./configure --enable-shared --enable-languages=c++,java
> --enable-threads=posix --prefix=$HOME/gcc
> $ make
> $ make install
Looks okay.
> $ cd libjava
> $ ./configure --enable-interpreter --prefix=$HOME/gcc
> $ make
> $ make install
>
> I had to apply the patch which removed the
> (unsigned jint)
> from natSystem.cc since my compiling gcc didn't like that. (from
> bugzilla)
>
> I had to manually compile gc-boehm (same procedure) and
> - libffi
> - zlib
>
> but then everything built smoothly.
But what did you do here ? thats done automatically by toplevel
"make; make install". I dont really know why you should do this. I dont
ever needed this. And the configure options to libgcj are incomplet
anyway. And --enable-interpreter is not needed as its the default.
Michael