window10上编译openjdk9
1. 安装cygwin64 下载地址: https://cygwin.com/setup-x86_64.exe
至少需要安装 zip,unzip,make
2. 安装好JDK8开发环境如:
D:/jdk8
3. 安装英文版 vs2010 和 sp1, 没有sp1补丁会有link错误
一定要英文版,否则需要你改半天 common/autoconf/generated-configure.sh 文件
4. 编译freetype 下载地址:https://download.savannah.gnu.org/releases/freetype/freetype-2.5.3.tar.gz
我把他们编译后放在D:/jdk9/freetype64 ,D:/jdk9/freetype32
5. 下载open JDK 9 源码
$hg clone http://hg.openjdk.java.net/jdk9/jdk9 src
我把源码放在D:/jdk9/src 目录
4. 运行configure
打开 cygwin64
$ cd /cygdrive/d/jdk9/src/
32位JDK:
$bash ./configure --with-target-bits=32 --with-freetype-lib=d:/jdk9/freetype32/lib --with-freetype-include=d:/jdk9/freetype32/include --disable-warnings-as-errors
64位JDK:
$bash ./configure --with-target-bits=64 --with-freetype-lib=d:/jdk9/freetype64/lib --with-freetype-include=d:/jdk9/freetype64/include --disable-warnings-as-errors
5. $make all
6. 测试
$ ./build/windows-x86_64-normal-server-release/images/jdk/bin/java -version
openjdk version "9-internal"
OpenJDK Runtime Environment (build 9-internal+0-adhoc.zhoup.src)
OpenJDK 64-Bit Server VM (build 9-internal+0-adhoc.zhoup.src, mixed mode)
补充:
a.一定要想好要编译32位还是64位的JDK,最好是操作系统,vs编译模式,freetype的位宽相同,否则会碰到很多问题
b.会玩VS的最好自己编译一下freetype.
c.vs2010-vs2013一定要英文版的,除非你非常熟悉 bash 并愿意改配置脚本。
d.编译过程碰到test_json.cpp报错,直接删除该文件
上一篇: CXF开通用户认证
下一篇: 加快tomcat8启动速度