gcc/libjava/classpath/lib/split-for-gcj.sh
Tom Tromey 7812310c7a gen-classlist.sh.in: Correct handle generated files.
* lib/gen-classlist.sh.in: Correct handle generated files.

2006-04-04  Mark Wielaard  <mark@klomp.org>

	* lib/gen-classlist.sh.in: Use classes.tmp, not classes.2
	as temporary file name.

2006-04-04  Tom Tromey  <tromey@redhat.com>

	* lib/split-for-gcj.sh: Updated for multi-field format.
	* lib/Makefile.am (CLEANFILES): Added classes.2.
	* lib/gen-classlist.sh.in (GCJ): Removed.  Create classes.1 and
	classes.2 using multiple fields.

From-SVN: r112677
2006-04-04 20:05:01 +00:00

57 lines
2.0 KiB
Bash
Executable File

#! /bin/sh
# This script is used when compiling Classpath with gcj. The idea is
# to compile one package at a time, and only recompile packages when
# actually required.
# We build java->class by package so we need to know what .java files
# correspond to what package.
# We have a .stamp file for each package; this is the makefile target.
# We also have a .list file for each package, which lists all the
# input files in that package.
# gen-classlist.sh makes a list of all the .java files we are going to compile.
# This script generates Makefile.deps, which looks like this:
#
# java/awt/AWTUtilities.class: lists/java-awt.stamp
# lists/java-awt.list: /home/aph/gcc/gcc/libjava/classpath/gnu/java/awt/AWTUtilities.java
# java/awt/BitMaskExtent.class: lists/java-awt.stamp
# lists/java-awt.list: /home/aph/gcc/gcc/libjava/classpath/gnu/java/awt/BitMaskExtent.java
# java/awt/BitwiseXORComposite.class: lists/java-awt.stamp
# lists/java-awt.list: /home/aph/gcc/gcc/libjava/classpath/gnu/java/awt/BitwiseXORComposite.java
echo "Splitting for gcj"
rm -f Makefile.dtmp > /dev/null 2>&1
test -d lists || mkdir lists
# Much more efficient to do processing outside the loop...
# The first expression computes the .class file name.
# We only want the first three package components, and
# we want them separated by '-'; this is the remaining expressions.
sed -e 's, \(.*\)[.]java$, \1.java \1.class,' \
-e 's,^\([^/ ]*\)/\([^/ ]*\) ,\1-\2 ,' \
-e 's,^\([^/ ]*\)/\([^/ ]*\)/\([^/ ]*\) ,\1-\2-\3 ,' \
-e 's,^\([^/ ]*\)/\([^/ ]*\)/\([^/ ]*\)/[^ ]* ,\1-\2-\3 ,' \
classes.2 |
while read pkg dir file f2; do
list=lists/$pkg
echo "$dir/$file" >> ${list}.list.1
echo "$f2: ${list}.stamp" >> Makefile.dtmp
echo "${list}.list: $dir/$file" >> Makefile.dtmp
done
# Only update a .list file if it changed.
for file in lists/*.list.1; do
real=`echo "$file" | sed -e 's/.1$//'`
if cmp -s $real $file; then
rm $file
else
mv $file $real
fi
done
# If we were run we must update Makefile.deps.
mv Makefile.dtmp Makefile.deps