This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Merge checked in


>>>>> "Mark" == Mark Wielaard <mark@klomp.org> writes:

Mark> BTW. You said you had some scripts for having a bootstrapping ecj1 and
Mark> gjavah around so you can immediately do a --enable-java-maintainer-mode
Mark> build. Could you publish those somewhere?

I have a couple of shell scripts that I put in $PATH when I am
building with --enable-java-maintainer-mode.  These are just 'ecj1'
and 'gjavah' scripts that do the obvious thing.

I've appended them.  Edit to suit your setup.  You can make a
tools.zip by zipping up the classes in libjava/classpath/tools/.

These just run a pre-existing gij.  I use the system gij from FC5.

Tom


#! /bin/sh

gij -cp /home/tromey/gnu/Generics/trunk/ecj.jar \
   org.eclipse.jdt.internal.compiler.batch.GCCMain \
   ${1+"$@"}


#! /bin/sh

dir=/home/tromey/gnu/Generics/Gcjh
gij -cp $dir/tools.zip \
   gnu.classpath.tools.javah.Main \
   ${1+"$@"}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]