gentoo-bootstrap/README.md

39 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2019-12-01 23:29:12 +00:00
## Bootstrapping OpenJDK 8
2019-12-04 01:34:11 +00:00
```sh
2022-01-15 14:00:01 +00:00
sudo emerge -a1v =dev-java/icedtea-3.21.0
sudo emerge -av dev-java/openjdk:8
2019-12-07 16:37:47 +00:00
sudo emerge -a --depclean # Remove old software that was used for bootstrapping
2019-12-01 23:29:12 +00:00
```
2022-01-15 14:00:01 +00:00
Notes:
1. 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.
2022-01-15 14:00:01 +00:00
2. Last tested on GCC 11. New version of GCC are known to occasionally break builds
and might need additional patches.
2019-12-01 23:29:12 +00:00
## Bootstrapping OpenJDK 11
2019-12-04 01:34:11 +00:00
```sh
2021-12-18 12:06:41 +00:00
sudo emerge -a1v =dev-java/openjdk-11.0.9_p11
2019-12-01 23:29:12 +00:00
```
At this point you can remove this overlay and install OpenJDK from main tree:
2019-12-04 01:34:11 +00:00
```sh
2019-12-01 23:29:12 +00:00
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). Then we use it to build Icedtea 3
and subsequent OpenJDK versions.