/hg/icedtea6: Allow shark builds as additional vm when zero is t...
doko at icedtea.classpath.org
doko at icedtea.classpath.org
Thu Oct 8 04:05:47 PDT 2009
changeset 70ec5cda5f7c in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=70ec5cda5f7c
author: doko at ubuntu.com
date: Thu Oct 08 13:08:52 2009 +0200
Allow shark builds as additional vm when zero is the default vm
2009-10-08 Matthias Klose <doko at ubuntu.com>
* Makefile.am (stamps/icedtea.stamp, stamps/icedtea-
debug.stamp): Add shark aliases to jvm.cfg. (stamps
/add-zero.stamp): Install as shark if default vm is zero.
* configure.ac: Allow shark as additional vm when default vm is zero.
* INSTALL, README: Document new build options.
diffstat:
5 files changed, 48 insertions(+), 9 deletions(-)
ChangeLog | 8 ++++++++
INSTALL | 7 +++++--
Makefile.am | 22 ++++++++++++++++++++++
README | 15 +++++++++------
configure.ac | 5 ++++-
diffs (140 lines):
diff -r f61b94ebf46a -r 70ec5cda5f7c ChangeLog
--- a/ChangeLog Tue Oct 06 13:42:46 2009 +0100
+++ b/ChangeLog Thu Oct 08 13:08:52 2009 +0200
@@ -1,3 +1,11 @@ 2009-10-06 Gary Benson <gbenson at redhat
+2009-10-08 Matthias Klose <doko at ubuntu.com>
+
+ * Makefile.am (stamps/icedtea.stamp, stamps/icedtea-debug.stamp):
+ Add shark aliases to jvm.cfg.
+ (stamps/add-zero.stamp): Install as shark if default vm is zero.
+ * configure.ac: Allow shark as additional vm when default vm is zero.
+ * INSTALL, README: Document new build options.
+
2009-10-06 Gary Benson <gbenson at redhat.com>
* patches/icedtea-s390-serialize.patch: New file.
diff -r f61b94ebf46a -r 70ec5cda5f7c INSTALL
--- a/INSTALL Tue Oct 06 13:42:46 2009 +0100
+++ b/INSTALL Thu Oct 08 13:08:52 2009 +0200
@@ -125,10 +125,13 @@ on architectures where only zero (or sha
--with-additional-vms=cacao
to build the additional VM's. It's not possible to build cacao as the
default VM, and zero as additional VM.
+To build zero as the default VM and shark as an additional VM, use
+ --enable-zero --with-additional-vms=shark
The additional VM's are available by calling the java with the option
-`-cacao' or `-zero' (for shark as well), or by calling the java tools with
-`-J-<vm name>'.
+`-cacao', `-zero' or `-shark', or by calling the java tools with
+`-J-<vm name>'. If the build was configured with '--enable-shark',
+use `-Xint' to just use the zero VM.
Support for different versions of HotSpot
-----------------------------------------
diff -r f61b94ebf46a -r 70ec5cda5f7c Makefile.am
--- a/Makefile.am Tue Oct 06 13:42:46 2009 +0100
+++ b/Makefile.am Thu Oct 08 13:08:52 2009 +0200
@@ -1250,6 +1250,9 @@ if ZERO_BUILD
if ZERO_BUILD
printf -- '-zero ALIASED_TO -server\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
endif
+if SHARK_BUILD
+ printf -- '-shark ALIASED_TO -server\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
+endif
if WITH_CACAO
printf -- '-cacao ALIASED_TO -server\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
endif
@@ -1338,6 +1341,9 @@ endif
$(BUILD_OUTPUT_DIR)-debug/j2sdk-image/jre/lib
if ZERO_BUILD
printf -- '-zero ALIASED_TO -server\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
+endif
+if SHARK_BUILD
+ printf -- '-shark ALIASED_TO -server\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
endif
if WITH_CACAO
printf -- '-cacao ALIASED_TO -server\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
@@ -1940,12 +1946,20 @@ if ADD_ZERO_BUILD
$(ADD_ZERO_EXTRA_BUILD_ENV) \
$(ARCH_PREFIX) $(MAKE) -C zerovm $(ICEDTEA_BUILD_TARGET)
+if ZERO_BUILD
+ mkdir -p $(BUILD_JRE_ARCH_DIR)/shark
+ cp -a zerovm/openjdk/build/$(OS_DIR)/hotspot/import/jre/lib/$(INSTALL_ARCH_DIR)/server/* \
+ $(BUILD_JRE_ARCH_DIR)/shark/
+ printf -- '-shark KNOWN\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
+else
mkdir -p $(BUILD_JRE_ARCH_DIR)/zero
cp -a zerovm/openjdk/build/$(OS_DIR)/hotspot/import/jre/lib/$(INSTALL_ARCH_DIR)/server/* \
$(BUILD_JRE_ARCH_DIR)/zero/
printf -- '-zero KNOWN\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
+endif
else
printf -- '-zero ERROR\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
+ printf -- '-shark ERROR\n' >> $(BUILD_JRE_ARCH_DIR)/jvm.cfg
endif
touch $@
@@ -1960,12 +1974,20 @@ if ADD_ZERO_BUILD
$(ADD_ZERO_EXTRA_BUILD_ENV) \
$(ARCH_PREFIX) $(MAKE) -C zerovm $(ICEDTEA_DEBUG_BUILD_TARGET)
+if ZERO_BUILD
+ mkdir -p $(BUILD_DEBUG_JRE_ARCH_DIR)/shark
+ cp -a zerovm/openjdk/build/$(OS_DIR)/hotspot/import/jre/lib/$(INSTALL_ARCH_DIR)/server/* \
+ $(BUILD_DEBUG_JRE_ARCH_DIR)/shark/
+ printf -- '-shark KNOWN\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
+else
mkdir -p $(BUILD_DEBUG_JRE_ARCH_DIR)/zero
cp -a zerovm/openjdk/build/$(OS_DIR)/hotspot/import/jre/lib/$(INSTALL_ARCH_DIR)/server/* \
$(BUILD_DEBUG_JRE_ARCH_DIR)/zero/
printf -- '-zero KNOWN\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
+endif
else
printf -- '-zero ERROR\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
+ printf -- '-shark ERROR\n' >> $(BUILD_DEBUG_JRE_ARCH_DIR)/jvm.cfg
endif
touch $@
diff -r f61b94ebf46a -r 70ec5cda5f7c README
--- a/README Tue Oct 06 13:42:46 2009 +0100
+++ b/README Thu Oct 08 13:08:52 2009 +0200
@@ -153,13 +153,16 @@ machine, addtional VM's can be built wit
machine, addtional VM's can be built without building the other components
multiple times.
-On architectures where hotspot is available, use
+On architectures where hotspot is available, use
--with-additional-vms=cacao,zero (or shark instead of zero)
on architectures where only zero (or shark) is available, use
- --with-additional-vms=cacao
-to build the additional VM's. It's not possible to build cacao as the
+ --with-additional-vms=cacao
+to build the additional VM's. It's not possible to build cacao as the
default VM, and zero as additional VM.
+To build zero as the default VM and shark as an additional VM, use
+ --enable-zero --with-additional-vms=shark
-If the build was configured with --with-additional-vms, the additional VM's
-are available by calling the java with the option `-cacao' or `-zero' (for
-shark as well), or by calling the java tools with `-J-<vm name>'.
+The additional VM's are available by calling the java with the option
+`-cacao', `-zero' or `-shark', or by calling the java tools with
+`-J-<vm name>'. If the build was configured with '--enable-shark',
+use `-Xint' to just use the zero VM.
diff -r f61b94ebf46a -r 70ec5cda5f7c configure.ac
--- a/configure.ac Tue Oct 06 13:42:46 2009 +0100
+++ b/configure.ac Thu Oct 08 13:08:52 2009 +0200
@@ -532,7 +532,10 @@ if test "x${WITH_CACAO}" = xyes && test
if test "x${WITH_CACAO}" = xyes && test "x${ADD_CACAO_BUILD_TRUE}" = x; then
AC_MSG_ERROR([additional vm is the default vm])
fi
-if test "x${ZERO_BUILD_TRUE}" = x && test "x${ADD_ZERO_BUILD_TRUE}" = x; then
+if test "x${ZERO_BUILD_TRUE}" = x && test "x${ADD_ZERO_BUILD_TRUE}" = x && test "x${ADD_SHARK_BUILD_TRUE}" != x; then
+ AC_MSG_ERROR([additional vm is the default vm])
+fi
+if test "x${SHARK_BUILD_TRUE}" = x && test "x${ADD_SHARK_BUILD_TRUE}" = x; then
AC_MSG_ERROR([additional vm is the default vm])
fi
if test "x${USE_SYSTEM_CACAO_TRUE}" = x; then
More information about the distro-pkg-dev
mailing list