Severin Gehwolf

Results 387 comments of Severin Gehwolf

If this keep failing, we can disable static-libs for AIX. It wouldn't be a supported OS for Graal VM/Mandrel builds anyway.

> > * Where can be obtain CVE information for a given OpenJDK release? > > > > * As we'll always be generating release notes after the upstream release...

The correct fix for this is to specify `-Djdk.test.docker.image.name=` and `-Djdk.test.docker.image.version=` when running the test. That is, if you wanted to run the test on a `registry.fedoraproject.org/fedora:37` base image, one...

There really is nothing to report upstream, as that's the way to handle mismatches on the base image versions. See https://bugs.openjdk.org/browse/JDK-8221342

Yes it's GraalVM's version of https://bugs.openjdk.org/browse/JDK-8272124 (at least very likely). The code is not very much up to date in that space and largely duplicates JDK code. To confirm, please...

Hmm, it might be [JDK-8272124](https://bugs.openjdk.org/browse/JDK-8272124) or any number of other bugs. My attempts at reproducing this using the repro of JDK-8272124 still failed, though. That bug is present, as it...

Some evidence of [JDK-8272124](https://bugs.openjdk.org/browse/JDK-8272124): ``` $ cat Test.java public class Test { public static void main(String[] args) { System.out.println("cpus = " + Runtime.getRuntime().availableProcessors()); } } ``` Produce a native image...

Not sure which version of native image you are using, but this line: https://github.com/oracle/graal/blob/release/graal-vm/22.3/substratevm/src/com.oracle.svm.core.containers/src/com/oracle/svm/core/containers/cgroupv1/CgroupV1Subsystem.java#L134 should split your join controller combo into `cpuacct, cpu, cpuset` and use that path. Are there...

The only workaround I know of is to build the image with `-H:-UseContainerSupport` (which disables container memory limit detection entirely for the image). This should be fixed properly in GraalVM...

@gdams Could missing `libgcc` in alpine images be the source of the trouble we were seeing with those? See: https://github.com/adoptium/temurin-build/issues/3002#issuecomment-1334115925 https://github.com/adoptium/containers/issues/319 might be related too.