Gentoo overlay to bootstrap OpenJDK/Rust/Go
Go to file
Andrius Štikonas 3e55112668 Change repository name to comply with PMS. 2020-06-04 21:45:47 +01:00
dev-java dev-java/gnu-classpath-0.93: fix manifest file. 2019-12-22 13:06:56 +00:00
dev-lang/rust rust: minor whitespace fix 2020-05-15 13:19:48 +01:00
metadata Add openjdk:9 and openjdk:10 ebuilds for bootstrapping openjdk:11 2019-11-03 15:41:49 +00:00
profiles Change repository name to comply with PMS. 2020-06-04 21:45:47 +01:00
virtual Make initial bootstrap VMs slotted. 2019-12-07 01:19:56 +00:00
README.md Update emerge command in README. 2020-02-23 13:33:23 +00:00
bootstrap.conf rename the repo to gentoo-bootstrap. 2020-05-03 20:32:54 +01:00

README.md

Bootstrapping OpenJDK 8

sudo emerge -a1v =dev-java/icedtea-3.7.0
sudo emerge -av dev-java/openjdk:8
sudo emerge -a --depclean # Remove old software that was used for bootstrapping

Note: you need to do it in two steps as currently ant-core:bootstrap is not co-installable with ant-core:0 from the Gentoo tree.

Bootstrapping OpenJDK 11

sudo emerge -a1v =dev-java/openjdk-11.0.5_p10

At this point you can remove this overlay and install OpenJDK from main tree:

sudo emerge -a dev-java/openjdk:11

Bootstrapping story

We first compile fastjar and jikes java compiler both of which are written in C++. This is enough to compile an old version of GNU Classpath 0.93. Then we compile an old version of JamVM 1.5.1. This serves as our initial Java Runtime Environment.

We use this to compile ant 1.8.1 which then allows us to build ecj-3.2. This allows us to compile GNU Classpath 0.99 which comes with more java tools (e.g. javah). Then we compile JamVM 2.0.0. This serves as our second Java environment.

Finally, we compile git snapshot of GNU Classpath which has a much better support for Java 1.6. Then we compile a slightly patched ecj-4.2. Together with JamVM 2.0.0 this will serve as Java environment that can bootstrap Icedtea 2 (Java 7). Unfortunately, I was only able to build Java 7 with JamVM as VM (which is slower), Hotspot build failed. JamVM with OpenJDK 7 classes can build Icedtea 3 with Hotspot VM.