Ubuntu WSL 下編譯OpenJDK12

来源:https://www.cnblogs.com/flytree/archive/2020/04/08/12657504.html
-Advertisement-
Play Games

一,安裝Ubuntu WSL 1.Windows中設置WSL並安裝Ubuntu wsl “控制面板”——>"程式”——>"啟用或關閉Windows功能"中勾選如下,否則安裝後無法開啟 在Windows商店中搜索Ubuntu並下載安裝 2.更換為國內源 將Ubuntu的更新源換到國內已獲得更好的體驗, ...


一,安裝Ubuntu WSL

1.Windows中設置WSL並安裝Ubuntu wsl

“控制面板”——>"程式”——>"啟用或關閉Windows功能"中勾選如下,否則安裝後無法開啟

 在Windows商店中搜索Ubuntu並下載安裝

2.更換為國內源

將Ubuntu的更新源換到國內已獲得更好的體驗,本人換的為阿裡雲的源,當然你也可以換別的源:

更新源的目錄是在 etc/apt/sources.list,先備份源

sudo cp sources.list sources.list.bakcup

然後在其前添加或將其內容替換為:

deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

 然後運行更新源

sudo apt-get update

二,OpenJDK12源碼獲取

OpenJDK12源碼地址:http://hg.openjdk.java.net/jdk/jdk12/file/06222165c35f

百度網盤 提取碼:0h2s 

三,構建編譯環境

下載源碼解壓後,在其doc目錄下有相關的說明文件,

安裝GCC命令

sudo apt-get install build-essential

第三方依賴庫

工具 庫名稱 安裝命令
FreeType The Free Type Project sudo apt-get install libfreetype6-dev
CUPS Common UNIX Printing System sudo apt-get install libcups2-dev
X11 X Window System  sudo apt-get install libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev
ALSA Advanced Linux Sound Architecture sudo apt-get install libasound2-dev
libffi Portable Foreign Function Interface Library sudo apt-get install libffi-dev
Autoconf Extensible Package of M4 Macros sudo apt-get install autoconf

安裝OpenJDK11

sudo apt-get install openjdk-11-jdk

安裝zip

sudo apt-get install zip

如沒安裝zip在檢查編譯時可能會報如下錯誤

configure: error: Could not find required tool for ZIPEXE
configure exiting with result code 1

四,進行編譯

編譯時有很多參數可以供使用,如設置編譯一個FastDebug版的,只有Server模式的HotSpot的虛擬機

bash configure --enable-debug --with-jvm-variants=server

如果環境已經構建好會出現如下類似內容:

====================================================
A new configuration has been successfully created in
/home/flytree/jdk12/build/linux-x86_64-server-fastdebug
using configure arguments '--enable-debug --with-jvm-variants=server'.

Configuration summary:
* Debug level:    fastdebug
* HS debug level: fastdebug
* JVM variants:   server
* JVM features:   server: 'aot cds cmsgc compiler1 compiler2 epsilongc g1gc graal jfr jni-check jvmci jvmti management nmt parallelgc serialgc services shenandoahgc vm-structs zgc'
* OpenJDK target: OS: linux, CPU architecture: x86, address length: 64
* Version string: 12-internal+0-adhoc.flytree.jdk12 (12-internal)

Tools summary:
* Boot JDK:       openjdk version "11.0.6" 2020-01-14 OpenJDK Runtime Environment (build 11.0.6+10-post-Ubuntu-1ubuntu118.04.1) OpenJDK 64-Bit Server VM (build 11.0.6+10-post-Ubuntu-1ubuntu118.04.1, mixed mode, sharing)  (at /usr/lib/jvm/java-11-openjdk-amd64)
* Toolchain:      gcc (GNU Compiler Collection)
* C Compiler:     Version 7.5.0 (at /usr/bin/gcc)
* C++ Compiler:   Version 7.5.0 (at /usr/bin/g++)

Build performance summary:
* Cores to use:   4
* Memory limit:   12154 MB

並會產生已下目錄

 

然後執行以下命令,進行編譯

make images

編譯後得到的JDK

文檔中參數說明:

Configure Arguments for Tailoring the Build

  • --enable-debug - Set the debug level to fastdebug (this is a shorthand for --with-debug-level=fastdebug)
  • --with-debug-level=<level> - Set the debug level, which can be releasefastdebugslowdebug or optimized. Default is releaseoptimized is variant of release with additional Hotspot debug code.
  • --with-native-debug-symbols=<method> - Specify if and how native debug symbols should be built. Available methods are noneinternalexternalzipped. Default behavior depends on platform. See Native Debug Symbols for more details.
  • --with-version-string=<string> - Specify the version string this build will be identified with.
  • --with-version-<part>=<value> - A group of options, where <part> can be any of preoptbuildmajorminorsecurity or patch. Use these options to modify just the corresponding part of the version string from the default, or the value provided by --with-version-string.
  • --with-jvm-variants=<variant>[,<variant>...] - Build the specified variant (or variants) of Hotspot. Valid variants are: serverclientminimalcorezerocustom. Note that not all variants are possible to combine in a single build.
  • --with-jvm-features=<feature>[,<feature>...] - Use the specified JVM features when building Hotspot. The list of features will be enabled on top of the default list. For the custom JVM variant, this default list is empty. A complete list of available JVM features can be found using bash configure --help.
  • --with-target-bits=<bits> - Create a target binary suitable for running on a <bits> platform. Use this to create 32-bit output on a 64-bit build platform, instead of doing a full cross-compile. (This is known as a reduced build.)

On Linux, BSD and AIX, it is possible to override where Java by default searches for runtime/JNI libraries. This can be useful in situations where there is a special shared directory for system JNI libraries. This setting can in turn be overriden at runtime by setting the java.library.path property.

  • --with-jni-libpath=<path> - Use the specified path as a default when searching for runtime libraries.

Configure Arguments for Native Compilation

  • --with-devkit=<path> - Use this devkit for compilers, tools and resources
  • --with-sysroot=<path> - Use this directory as sysroot
  • --with-extra-path=<path>[;<path>] - Prepend these directories to the default path when searching for all kinds of binaries
  • --with-toolchain-path=<path>[;<path>] - Prepend these directories when searching for toolchain binaries (compilers etc)
  • --with-extra-cflags=<flags> - Append these flags when compiling JDK C files
  • --with-extra-cxxflags=<flags> - Append these flags when compiling JDK C++ files
  • --with-extra-ldflags=<flags> - Append these flags when linking JDK libraries

Configure Arguments for External Dependencies

  • --with-boot-jdk=<path> - Set the path to the Boot JDK
  • --with-freetype=<path> - Set the path to FreeType
  • --with-cups=<path> - Set the path to CUPS
  • --with-x=<path> - Set the path to X11
  • --with-alsa=<path> - Set the path to ALSA
  • --with-libffi=<path> - Set the path to libffi
  • --with-jtreg=<path> - Set the path to JTReg. See Running Tests

Certain third-party libraries used by the JDK (libjpeg, giflib, libpng, lcms and zlib) are included in the JDK repository. The default behavior of the JDK build is to use this version of these libraries, but they might be replaced by an external version. To do so, specify system as the <source> option in these arguments. (The default is bundled).

  • --with-libjpeg=<source> - Use the specified source for libjpeg
  • --with-giflib=<source> - Use the specified source for giflib
  • --with-libpng=<source> - Use the specified source for libpng
  • --with-lcms=<source> - Use the specified source for lcms
  • --with-zlib=<source> - Use the specified source for zlib

參考:《深入理解Java虛擬機:JVM高級特性與最佳實踐》(第三版) 

 

五,使用編譯後的JDK

 將編譯後的JDK目錄,設置為JAVA_HOME,修改文件

sudo vim ~/.bashrc

在其最後添加

export JAVA_HOME=/home/flytree/jdk12/build/linux-x86_64-server-fastdebug/jdk
export JRE_HOME=${JAVA_HOME}/jre
export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib
export PATH=${JAVA_HOME}/bin:$PATH

執行‘source ~/.bashrc’使得保存生效,執行'java -version'看時否有效

$ java -version
openjdk version "12-internal" 2019-03-19
OpenJDK Runtime Environment (fastdebug build 12-internal+0-adhoc.flytree.jdk12)
OpenJDK 64-Bit Server VM (fastdebug build 12-internal+0-adhoc.flytree.jdk12, mixed mode)

編寫測試類

vim Hello.java
public class Hello {
    public static void main(String[] args) {
        System.out.println("Hello flytree");
    }
}

運行測試類

# javac Hello.java
# java Hello
Hello flytree

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1. 你們系統里為什麼要使用消息隊列? 2. 既然使用了消息隊列,說說他還有什麼使用場景? 3. 消息隊列的優缺點是什麼? ...
  • 所有代碼和筆記均可在 "我的GitHub" 中獲取,不嫌麻煩可以點個 star 支持一下
  • 仿射期限結構模型:理論與實現——實現部分 [toc] 本文介紹如何以面向對象的方式實現 " Affine Term Structure Models: Theory and Implementation " 中的演算法,並適當的使用設計模式使代碼儘可能的優雅。 引言 金融工程領域的模型和方法之間既有強 ...
  • "TOC" 系統架構 概述 隨著互聯網的發展,網站應用的規模不斷擴大。需求的激增,帶來的是技術上的壓力。 系統架構也因此也不斷的演進、升級、迭代。 從單一應用,到垂直拆分,到分散式服務,到SOA,以及現在火熱的微服務架構 集中式架構 概述 當網站流量很小時,只需一個應用 將所有功能都部署在一起,以減 ...
  • "TOC" Spring Boot整合Thymeleaf Spring Boot整合Thymeleaf(Spring Boot官方推薦的視圖層技術) Thymeleaf特點:thymeleaf通過特定的語法對html的標記進行渲染。 Spring Boot整合Thymeleaf 的項目步驟 1. 創 ...
  • "TOC" Spring Boot 整合視圖層技術 Spring Boot 整合jsp Spring Boot 整合Freemarker Spring Boot 整合 Thymeleaf (重點講解,官方推薦) Spring Boot 整合jsp 步驟: 1. 新建maven project的Spr ...
  • "TOC" Spring Boot整合Servlet(兩種方式) 1. 新建一個maven項目 創建完成後的結構圖: 2. 引入pom.xml依賴 第一種方式(通過註解掃描方式完成Servlet組件的註冊): 1. 通過註解掃描方式完成Servlet組件的註冊 1.1. 創建一個Servlet 1. ...
  • "TOC" Spring Boot 簡介 Spring Boot 是所有基於 Spring 開發的項目的起點。Spring Boot 的設計是為了讓你儘可能快的跑起來 Spring 應用程式並且儘可能減少你的配置文件。SpringBoot不是什麼新的框架,它只是預設配置了很多框架的使用方式。 Spr ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...