/hg/icedtea6: PR640: JamVM fails to build - Unrecognised option:...
xranby at icedtea.classpath.org
xranby at icedtea.classpath.org
Thu Feb 24 13:04:34 PST 2011
changeset cac9031cdd0d in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=cac9031cdd0d
author: Xerxes R?nby <xerxes at zafena.se>
date: Thu Feb 24 22:04:13 2011 +0100
PR640: JamVM fails to build - Unrecognised option:
-XX:ThreadStackSize.
2011-02-24 Xerxes Ranby <xerxes at zafena.se>
PR640: JamVM fails to build - Unrecognised option:
-XX:ThreadStackSize.
* NEWS: Updated.
* Makefile.am (ICEDTEA_PATCHES): Add JamVM patches if
BUILD_JAMVM are defined.
* patches/jamvm/ignore-more-XX-options.patch: New JamVM patch.
diffstat:
4 files changed, 26 insertions(+)
ChangeLog | 8 ++++++++
Makefile.am | 5 +++++
NEWS | 1 +
patches/jamvm/ignore-more-XX-options.patch | 12 ++++++++++++
diffs (57 lines):
diff -r e5b29d42117e -r cac9031cdd0d ChangeLog
--- a/ChangeLog Thu Feb 24 21:43:07 2011 +0100
+++ b/ChangeLog Thu Feb 24 22:04:13 2011 +0100
@@ -1,3 +1,11 @@ 2011-02-24 Xerxes Ranby <xerxes at zafena
+2011-02-24 Xerxes Ranby <xerxes at zafena.se>
+
+ PR640: JamVM fails to build - Unrecognised option: -XX:ThreadStackSize.
+ * NEWS: Updated.
+ * Makefile.am (ICEDTEA_PATCHES):
+ Add JamVM patches if BUILD_JAMVM are defined.
+ * patches/jamvm/ignore-more-XX-options.patch: New JamVM patch.
+
2011-02-24 Xerxes Ranby <xerxes at zafena.se>
* Makefile.am (stamps/download-cacao.stamp):
diff -r e5b29d42117e -r cac9031cdd0d Makefile.am
--- a/Makefile.am Thu Feb 24 21:43:07 2011 +0100
+++ b/Makefile.am Thu Feb 24 22:04:13 2011 +0100
@@ -354,6 +354,11 @@ ICEDTEA_PATCHES += \
ICEDTEA_PATCHES += \
patches/cacao/ignore-jdi-tests.patch \
patches/cacao/ignore-tests.patch
+endif
+
+if BUILD_JAMVM
+ICEDTEA_PATCHES += \
+ patches/jamvm/ignore-more-XX-options.patch
endif
if ENABLE_PULSE_JAVA
diff -r e5b29d42117e -r cac9031cdd0d NEWS
--- a/NEWS Thu Feb 24 21:43:07 2011 +0100
+++ b/NEWS Thu Feb 24 22:04:13 2011 +0100
@@ -443,6 +443,7 @@ New in release 1.10 (2011-XX-XX):
- PR635: zero fails to build on icedtea6 trunk 20110217 with hs20
- PR586: Sources missing from src.zip
- PR639: Add missing include line, paths and LLVM flags for Shark.
+ - PR640: JamVM fails to build - Unrecognised option: -XX:ThreadStackSize.
* Cleanup
- Patches are no longer prefixed with 'icedtea-'.
- All m4 macros are now prefixed with 'IT_' to denote their origin correctly.
diff -r e5b29d42117e -r cac9031cdd0d patches/jamvm/ignore-more-XX-options.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/jamvm/ignore-more-XX-options.patch Thu Feb 24 22:04:13 2011 +0100
@@ -0,0 +1,12 @@
+Index: jamvm/jamvm/src/jni.c
+===================================================================
+--- jamvm/jamvm.orig/src/jni.c 2011-02-23 09:54:17.000000000 +0100
++++ jamvm/jamvm/src/jni.c 2011-02-23 09:58:21.000000000 +0100
+@@ -1638,6 +1638,7 @@
+ #endif
+ /* Compatibility options */
+ } else if(strncmp(string, "-XX:PermSize=", 13) == 0 ||
++ strncmp(string, "-XX:ThreadStackSize=", 20) == 0 ||
+ strncmp(string, "-XX:MaxPermSize=", 16) == 0) {
+ /* Ignore */
+ } else if(!vm_args->ignoreUnrecognized) {
More information about the distro-pkg-dev
mailing list