Commit eeee073
committed
Support newer versions of javac
JamVM needs a java compiler when building for GNU Classpath, in
order to compile the VM support classes (classes.zip). Currently,
this breaks on JDK 9 or later, since the javac invocation uses
-bootclasspath, which (on JDK 9+) needs explicit -source/-target.
Fix by adding -source 1.6 -target 1.6 to javac options (same as
used by GNU Classpath itself).
While we are at this, also drop support for GCJ and Jikes. GCJ
was officially discontinued in 2016 (removed from GCC 7). Jikes
support was also removed from GNU Classpath long ago.
Signed-off-by: Guillermo Rodríguez <grodriguez@ingelabs.com>1 parent db96ce2 commit eeee073
2 files changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
274 | 274 | | |
275 | 275 | | |
276 | 276 | | |
277 | | - | |
| 277 | + | |
278 | 278 | | |
279 | 279 | | |
280 | 280 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
53 | | - | |
| 53 | + | |
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
| |||
0 commit comments