Last active
May 12, 2021 05:23
-
-
Save mpujari/9f1aaea26bf2f7ed566d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
My custom configuration used for build (jdk8) | |
./configure --with-target-bits=64 --with-debug-level=slowdebug --disable-debug-symbols --disable-zip-debug-info | |
For Jdk9, Jdk12 | |
bash ./configure --with-debug-level=slowdebug --with-num-cores=3 --with-native-debug-symbols=internal --with-boot-jdk=/opt/jdk-12.0.2+10 | |
https://skillsmatter.com/skillscasts/6252-what-lies-beneath-a-tour-of-the-dark-gritty-underbelly-of-openjdk | |
OpenJdk Jdk8 config | |
----------------------- | |
bash ./configure --with-debug-level=slowdebug --with-num-cores=2 enable_zip_debug_info=no enable_debug_symbols=no --with-boot-jdk=[BOOT_JDK_PATH] | |
OpenJDK | |
----------------------- | |
bash ./configure --with-debug-level=slowdebug --with-num-cores=2 --with-native-debug-symbols=internal --with-boot-jdk=/opt/jdk-16 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment