7f40378f06
gcc/java: 2007-02-15 David Daney <ddaney@avtrex.com> * Make-lang.in (JAVA_MANFILES): Add doc/gc-analyze.1. (java.maintainer-clean):Add gc-analyze.1. (.INTERMEDIATE): Add gc-analyze.pod. (gc-analyze.pod): New rule. (java.install-man): Install gc-analyze.1 * gcj.texi: Add new section for the gc-analyze program. libjava: 2007-02-15 Johannes Schmidt <jschmidt@avtrex.com> David Daney <ddaney@avtrex.com> * configure.ac: Create vm-tools-packages file. Add gnu/gcj/tools/gc_analyze to standard.omit and vm-tools-packages. Check for /proc/self/maps. * Makefile.am (bin_PROGRAMS): Added gc-analyze. (gc_analyze_SOURCES): New. (gc_analyze_LDFLAGS): New. (gc_analyze_LINK): New. (gc_analyze_LDADD): New. (gc_analyze_DEPENDENCIES): New. (nat_source_files): Add gnu/gcj/util/natGCInfo.cc. * Makefile.in: Regenerated. * configure: Regenerated. * include/config.h.in: Regenerated. * sources.am: Regenerated. * scripts/makemake.tcl: Don't include gc-analyze classes in libgcj. * gnu/gcj/tools/gc_analyze/SymbolLookup.java: New. * gnu/gcj/tools/gc_analyze/ObjectMap.java: New. * gnu/gcj/tools/gc_analyze/MemoryMap.java: New. * gnu/gcj/tools/gc_analyze/SymbolTable.java: New. * gnu/gcj/tools/gc_analyze/BlockMap.java: New. * gnu/gcj/tools/gc_analyze/BytePtr.java: New. * gnu/gcj/tools/gc_analyze/ItemList.java: New. * gnu/gcj/tools/gc_analyze/ToolPrefix.java: New. * gnu/gcj/tools/gc_analyze/MemoryAnalyze.java: New. * gnu/gcj/util/GCInfo.java: New. * gnu/gcj/util/GCInfo.h: New. * gnu/gcj/util/natGCInfo.cc: New. * gnu/gcj/util/UtilPermission.java: New. * gnu/gcj/util/UtilPermission.h: New. * classpath/tools/gnu/gcj/tools/gc_analyze/SymbolTable.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/ObjectMap$ObjectItem.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryMap$RangeComparator.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/BlockMap$PtrMarks.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryMap$Range.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/BlockMap.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/BytePtr.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$SubstringComparator.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/ItemList.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/ToolPrefix.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$1$Info.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$1.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$2.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$3.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$4.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$OptionParser.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/BlockMap$SizeKind.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/SymbolLookup.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/ObjectMap.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryMap.class: New. * classpath/lib/gnu/gcj/util/GCInfo.class: New. * classpath/lib/gnu/gcj/util/UtilPermission.class: New. libjava/classpath: 2007-02-15 David Daney <ddaney@avtrex.com> * tools/Makefile.am (TOOLS_ZIP): Add classes from vm-tools-packages. * tools/Makefile.in: Regenerated. From-SVN: r122007
202 lines
6.3 KiB
Makefile
Executable File
202 lines
6.3 KiB
Makefile
Executable File
## Input file for automake to generate the Makefile.in used by configure
|
|
|
|
## GCJ LOCAL: use srcdir to find core classes.
|
|
GLIBJ_BOOTCLASSPATH='$(top_srcdir)/lib'
|
|
GLIBJ_CLASSPATH=$(srcdir)/asm
|
|
## END GCJ LOCAL
|
|
|
|
# Setup the compiler to use the GNU Classpath library we just build
|
|
if FOUND_GCJ
|
|
JCOMPILER = $(GCJ) -C -encoding UTF-8 -bootclasspath $(GLIBJ_BOOTCLASSPATH) -classpath $(GLIBJ_CLASSPATH):.
|
|
else
|
|
if FOUND_ECJ
|
|
JCOMPILER = $(ECJ) -1.5 -encoding UTF-8 -bootclasspath $(GLIBJ_BOOTCLASSPATH) -classpath .:$(GLIBJ_CLASSPATH)
|
|
else
|
|
error dunno how to setup the JCOMPILER and compile
|
|
endif
|
|
endif
|
|
|
|
if CREATE_WRAPPERS
|
|
bin_SCRIPTS =
|
|
bin_PROGRAMS = gappletviewer gjarsigner gkeytool \
|
|
gjar gnative2ascii gserialver gjavah grmiregistry \
|
|
gtnameserv gorbd grmid grmic
|
|
|
|
|
|
AM_CPPFLAGS = -Wall \
|
|
-I$(top_srcdir)/include \
|
|
-DLIBJVM="\"$(libdir)/libjvm\"" \
|
|
-DTOOLS_ZIP="\"$(TOOLSdir)/$(TOOLS_ZIP)\""
|
|
|
|
gappletviewer_SOURCES = toolwrapper.c
|
|
gappletviewer_CFLAGS = \
|
|
-DTOOLPACKAGE="\"appletviewer\"" \
|
|
-DTOOLNAME="\"gappletviewer\""
|
|
|
|
gjarsigner_SOURCES = toolwrapper.c
|
|
gjarsigner_CFLAGS = \
|
|
-DTOOLPACKAGE="\"jarsigner\"" \
|
|
-DTOOLNAME="\"gjarsigner\""
|
|
|
|
gkeytool_SOURCES = toolwrapper.c
|
|
gkeytool_CFLAGS = \
|
|
-DTOOLPACKAGE="\"keytool\"" \
|
|
-DTOOLNAME="\"gkeytool\""
|
|
|
|
gjar_SOURCES = toolwrapper.c
|
|
gjar_CFLAGS = \
|
|
-DTOOLPACKAGE="\"jar\"" \
|
|
-DTOOLNAME="\"gjar\""
|
|
|
|
gnative2ascii_SOURCES = toolwrapper.c
|
|
gnative2ascii_CFLAGS = \
|
|
-DTOOLPACKAGE="\"native2ascii\"" \
|
|
-DTOOLNAME="\"gnative2ascii\""
|
|
|
|
gserialver_SOURCES = toolwrapper.c
|
|
gserialver_CFLAGS = \
|
|
-DTOOLPACKAGE="\"serialver\"" \
|
|
-DTOOLNAME="\"gserialver\""
|
|
|
|
grmiregistry_SOURCES = toolwrapper.c
|
|
grmiregistry_CFLAGS = \
|
|
-DTOOLPACKAGE="\"rmiregistry\"" \
|
|
-DTOOLNAME="\"grmiregistry\""
|
|
|
|
gtnameserv_SOURCES = toolwrapper.c
|
|
gtnameserv_CFLAGS = \
|
|
-DTOOLPACKAGE="\"tnameserv\"" \
|
|
-DTOOLNAME="\"gtnameserv\""
|
|
|
|
gorbd_SOURCES = toolwrapper.c
|
|
gorbd_CFLAGS = \
|
|
-DTOOLPACKAGE="\"orbd\"" \
|
|
-DTOOLNAME="\"gorbd\""
|
|
|
|
grmid_SOURCES = toolwrapper.c
|
|
grmid_CFLAGS = \
|
|
-DTOOLPACKAGE="\"rmid\"" \
|
|
-DTOOLNAME="\"grmid\""
|
|
|
|
gjavah_SOURCES = toolwrapper.c
|
|
gjavah_CFLAGS = \
|
|
-DTOOLPACKAGE="\"javah\"" \
|
|
-DTOOLNAME="\"gjavah\""
|
|
|
|
grmic_SOURCES = toolwrapper.c
|
|
grmic_CFLAGS = \
|
|
-DTOOLPACKAGE="\"rmic\"" \
|
|
-DTOOLNAME="\"grmic\""
|
|
|
|
else
|
|
## GCJ LOCAL: do not install these.
|
|
noinst_SCRIPTS = gappletviewer gjarsigner gkeytool \
|
|
gjar gnative2ascii gserialver gjavah grmiregistry \
|
|
gtnameserv gorbd grmid grmic
|
|
bin_PROGRAMS =
|
|
endif
|
|
EXTRA_DIST = toolwrapper.c gappletviewer.in gjarsigner.in gkeytool.in \
|
|
gjar.in gnative2ascii.in gserialver.in gjavah.in grmiregistry.in \
|
|
gtnameserv.in gorbd.in grmid.in grmic.in
|
|
|
|
# All our example java source files
|
|
TOOLS_JAVA_FILES = $(srcdir)/gnu/classpath/tools/*/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/attrs/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/commons/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/optimizer/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/signature/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/tree/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/tree/analysis/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/util/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/util/attrs/*.java \
|
|
$(srcdir)/external/asm/org/objectweb/asm/xml/*.java
|
|
|
|
# The zip files with classes we want to produce.
|
|
TOOLS_ZIP = tools.zip
|
|
|
|
# Extra objects that will not exist until configure-time
|
|
BUILT_SOURCES = $(TOOLS_ZIP)
|
|
|
|
# RMIC templates that must be included in the generated zip file.
|
|
RMIC_TEMPLATES = $(srcdir)/gnu/classpath/tools/rmic/templates/*.jav
|
|
|
|
# All the files we find "interesting"
|
|
ALL_TOOLS_FILES = $(TOOLS_JAVA_FILES) $(RMIC_TEMPLATES)
|
|
|
|
# Some architecture independent data to be installed.
|
|
# GCJ LOCAL: do not install this.
|
|
noinst_DATA = $(TOOLS_ZIP)
|
|
|
|
# Where we want these data files installed.
|
|
TOOLSdir = $(pkgdatadir)
|
|
|
|
# Make sure everything is included in the distribution.
|
|
dist-hook:
|
|
srcdir_cnt=`echo $(srcdir) | wc -c`; \
|
|
for file in $(ALL_TOOLS_FILES); do \
|
|
f=`echo $$file | cut -c$$srcdir_cnt-`; \
|
|
fdir=`dirname $$f`; \
|
|
if test ! -d $(distdir)/$$fdir; then \
|
|
echo "$(makeinstalldirs) $(distdir)/$$fdir"; \
|
|
$(mkinstalldirs) $(distdir)/$$fdir; \
|
|
fi; \
|
|
echo "cp -p $$file $(distdir)/$$f"; \
|
|
cp -p $$file $(distdir)/$$f; \
|
|
done
|
|
|
|
# To generate the example zip just depend on the sources and ignore
|
|
# the class files. Always regenerate all .class files and remove them
|
|
# immediately. And copy the template files we use to the classes dir
|
|
# so they get also included.
|
|
$(TOOLS_ZIP): $(TOOLS_JAVA_FILES)
|
|
## GCJ LOCAL: put classes in srcdir
|
|
## @rm -rf classes asm
|
|
## mkdir classes asm
|
|
find $(srcdir)/external/asm -name '*.java' -print > asm.lst
|
|
find $(srcdir)/gnu/classpath/tools -name '*.java' -print > classes.lst
|
|
if [ -f $(top_builddir)/../vm-tools-packages ]; then \
|
|
for pkg in `cat $(top_builddir)/../vm-tools-packages`; do \
|
|
$(FIND) $(top_srcdir)/../$$pkg -follow -name '*.java' -print >> vm-tools.lst; \
|
|
done \
|
|
else \
|
|
echo -n > vm-tools.lst; \
|
|
fi
|
|
cat classes.lst asm.lst vm-tools.lst > all-classes.lst
|
|
if JAVA_MAINTAINER_MODE
|
|
## Compile ASM separately as it is latin-1 encoded.
|
|
AC=`echo $(JCOMPILER) | sed -e 's/UTF-8/ISO-8859-1/g'`; \
|
|
$$AC -g -w -d $(srcdir)/asm @asm.lst
|
|
$(JCOMPILER) -g -w -d $(srcdir)/classes @classes.lst @vm-tools.lst
|
|
## Copy over tools resource files.
|
|
@list=`cd $(top_srcdir)/resource && find gnu/classpath/tools -name \*.properties -print`; \
|
|
for p in $$list; do \
|
|
dirname=classes/`dirname $$p`; \
|
|
if ! test -d "$$dirname"; then mkdir -p "$$dirname"; fi; \
|
|
echo " cp $(top_srcdir)/resource/$$p classes/$$p"; \
|
|
cp $(top_srcdir)/resource/$$p classes/$$p; \
|
|
done
|
|
endif
|
|
cp -pR $(srcdir)/asm .
|
|
cp -pR $(srcdir)/classes .
|
|
## END GCJ LOCAL
|
|
## First add classpath tools stuff.
|
|
(cd classes; \
|
|
if test "$(ZIP)" != ""; then $(ZIP) -r ../$(TOOLS_ZIP) .; fi; \
|
|
if test "$(FASTJAR)" != ""; then $(FASTJAR) cf ../$(TOOLS_ZIP) .; fi; \
|
|
cd ..)
|
|
## Now add ASM classes.
|
|
(cd asm; \
|
|
if test "$(ZIP)" != ""; then $(ZIP) -u -r ../$(TOOLS_ZIP) .; fi; \
|
|
if test "$(FASTJAR)" != ""; then $(FASTJAR) uf ../$(TOOLS_ZIP) .; fi; \
|
|
cd ..)
|
|
rm -rf asm classes classes.lst asm.lst
|
|
|
|
# Zip file be gone! (and make sure the classes are gone too)
|
|
clean-local:
|
|
rm -rf $(TOOLS_ZIP) classes asm asm.lst
|
|
|
|
# FIXME: remove this when GNU Classpath includes a bootstrap VM.
|
|
installcheck-binSCRIPTS:
|
|
:
|