During work on JDK-8344942 I discovered that it is currently not possible to compile VectorAPI code because it is still in incubator mode and needs flag "--add-modules=jdk.incubator.vector" for "javac".
Also: "javac" can produce warnings, and that leads to issues like this:JDK-8351998. We should allow such warnings, they are not compile failures.
Example:
javac --add-modules=jdk.incubator.vector Test.java
warning: [incubating] using incubating module(s): jdk.incubator.vector
1 warning
Also: "javac" can produce warnings, and that leads to issues like this:
Example:
javac --add-modules=jdk.incubator.vector Test.java
warning: [incubating] using incubating module(s): jdk.incubator.vector
1 warning
- duplicates
-
JDK-8351998 Test testlibrary_tests/compile_framework/tests/TestConcurrentCompilation.java failed
-
- Closed
-
- relates to
-
JDK-8337221 CompileFramework: test library to conveniently compile java and jasm sources for fuzzing
-
- Resolved
-
- links to
-
Commit(master) openjdk/jdk/3ed010ab
-
Review(master) openjdk/jdk/24082