c9db365d82
2008-06-30 Joshua Sumali <jsumali@redhat.com> Andrew Haley <aph@redhat.com> * configure.ac (java-home): new AC_ARG_ENABLE. (aot-compile-rpm): Likewise. (CREATE_JAVA_HOME): new AM_CONDITIONAL. (INSTALL_AOT_RPM): Likewise. (gcc-suffix): new AC_ARG_WITH. (arch-directory): Likewise. (os-directory): Likewise. (origin-name): Likewise. (arch-suffix): Likewise. (jvm-root-dir): Likewise. (jvm-jar-dir): Likewise. (python-dir): Likewise. (AC_CONFIG_FILES): Add contrib/aotcompile.py, contrib/aot-compile, contrib/aot-compile-rpm, contrib/rebuild-gcj-db. (gcjsubdir): New AC_SUBST. * Makefile.am (install-data-local): Install Python modules for aot-compile. Also install an sdk style directory if --enable-java-home is passed to configure. (bin_SCRIPTS): Add contrib/rebuild-gcj-db and contrib/aot-compile. (gcjsubdir): Add. (db_pathtail): Redefine in terms of gcjsubdir. * contrib/aot-compile.in: New file. * contrib/aotcompile.py.in: Likewise. * contrib/aot-compile-rpm.in: Likewise. * contrib/classfile.py: Likewise. * contrib/rebuild-gcj-db.in: Likewise. * configure: Regenerate. * Makefile.in: Regenerate. 2008-06-30 Joshua Sumali <jsumali@redhat.com> * doc/install.texi (--enable-java-home): Document. (--enable-aot-compile-rpm): Likewise. (--with-arch-directory): Likewise. (--with-os-directory): Likewise. (--with-origin-name): Likewise. (--with-arch-suffix): Likewise. (--with-jvm-root-dir): Likewise. (--with-jvm-jar-dir): Likewise. (--with-python-dir): Likewise. 2008-06-30 Joshua Sumali <jsumali@redhat.com> * Make-lang.in (JAVA_MANFILES): Add doc/aot-compile.1 and doc/rebuild-gcj-db.1 (java.uninstall): Likewise. (java.maintainer-clean): Likewise. (aot-compile.pod): New rule. (rebuild-gcj-db.pod): New rule. (java.install-man): Install doc/aot-compile.1 and doc/rebuild-gcj-db.1 * gcj.texi: Add new sections for aot-compile and rebuild-gcj-db. Co-Authored-By: Andrew Haley <aph@redhat.com> From-SVN: r137353
28 lines
907 B
Bash
28 lines
907 B
Bash
#!/bin/bash
|
|
# rebuild-gcj-db
|
|
|
|
## Copyright (C) 2000, 2002, 2003, 2008 Free Software Foundation
|
|
##
|
|
## This file is part of libgcj.
|
|
##
|
|
## This software is copyrighted work licensed under the terms of the
|
|
## Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
## details.
|
|
|
|
# Rebuild all the standard databases.
|
|
for i in `@prefix@/bin/gcc --print-multi-lib 2>/dev/null`; do
|
|
multilib=`echo $i | sed -e 's/^.*;//' | sed -e 's/\@/ -/g'`
|
|
dirname=`@prefix@/bin/gcc -print-multi-os-directory $multilib 2>/dev/null`
|
|
base=@prefix@/lib/$dirname
|
|
dbLocation=`@prefix@/bin/gcj-dbtool -p $base`
|
|
libdir=$base/gcj
|
|
if ! test -d $libdir; then
|
|
# No shared libraries here.
|
|
continue
|
|
fi
|
|
dirname $dbLocation | xargs mkdir -p
|
|
@prefix@/bin/gcj-dbtool -n $dbLocation 64
|
|
find $libdir -follow -name '*.db' -print0 | \
|
|
@prefix@/bin/gcj-dbtool -0 -m $dbLocation $dbLocation
|
|
done
|