Hello community, here is the log from the commit of package java-11-openj9 for openSUSE:Factory checked in at 2020-06-09 00:01:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/java-11-openj9 (Old) and /work/SRC/openSUSE:Factory/.java-11-openj9.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "java-11-openj9" Tue Jun 9 00:01:14 2020 rev:3 rq:812432 version:11.0.7.0 Changes: -------- --- /work/SRC/openSUSE:Factory/java-11-openj9/java-11-openj9.changes 2020-04-25 20:28:25.618034735 +0200 +++ /work/SRC/openSUSE:Factory/.java-11-openj9.new.3606/java-11-openj9.changes 2020-06-09 00:04:10.665187120 +0200 @@ -1,0 +2,7 @@ +Mon Jun 8 07:17:18 UTC 2020 - Fridrich Strba <[email protected]> + +- Added patch: + * gcc10.patch + + fix build with gcc 10.x + +------------------------------------------------------------------- New: ---- gcc10.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ java-11-openj9.spec ++++++ --- /var/tmp/diff_new_pack.xNcyqS/_old 2020-06-09 00:04:12.533193747 +0200 +++ /var/tmp/diff_new_pack.xNcyqS/_new 2020-06-09 00:04:12.537193762 +0200 @@ -160,6 +160,7 @@ Patch30: JDK-8208602.patch Patch31: aarch64.patch Patch32: gcc-fno-common-fix.patch +Patch33: gcc10.patch # # OpenJDK specific patches # @@ -448,6 +449,7 @@ %patch30 -p1 %patch31 -p1 %patch32 -p1 +%patch33 %patch302 -p1 %patch303 -p1 ++++++ gcc10.patch ++++++ --- openj9/runtime/tests/jvmtitests/src/com/ibm/jvmti/tests/verboseGC/vgc001.c +++ openj9/runtime/tests/jvmtitests/src/com/ibm/jvmti/tests/verboseGC/vgc001.c @@ -31,7 +31,7 @@ static agentEnv * env; static jvmtiExtensionFunction subscribe = NULL; static jvmtiExtensionFunction unsubscribe = NULL; -void *subscriptionID; +void *subscriptionID1; volatile static jint bufferCount = 0; volatile static int alarmed = 0; @@ -131,7 +131,7 @@ Java_com_ibm_jvmti_tests_verboseGC_vgc001_tryRegisterVerboseGCSubscriber(JNIEnv jvmtiError err; jvmtiEnv *jvmti_env = env->jvmtiEnv; - err = subscribe(jvmti_env, "vgc001 subscriber", vgc001Callback, vgc001Alarm, NULL, &subscriptionID); + err = subscribe(jvmti_env, "vgc001 subscriber", vgc001Callback, vgc001Alarm, NULL, &subscriptionID1); if (err != JVMTI_ERROR_NONE) { error(env, err, "RegisterVerboseGCSubscriber failed"); return FALSE; @@ -147,7 +147,7 @@ Java_com_ibm_jvmti_tests_verboseGC_vgc001_tryDeregisterVerboseGCSubscriber(JNIEn jvmtiError err = JVMTI_ERROR_NONE; jvmtiEnv *jvmti_env = env->jvmtiEnv; - err = unsubscribe(jvmti_env, subscriptionID, NULL); + err = unsubscribe(jvmti_env, subscriptionID1, NULL); if (err != JVMTI_ERROR_NONE && err != JVMTI_ERROR_NOT_AVAILABLE) { error(env, err, "DeregisterVerboseGCSubscriber failed"); return -1;
