OpenJdk11在windows10 上编译测试

  1. windows 10 64位系统
  2. openjdk 11
  3. 安装文档地址: https://hg.openjdk.java.net/jdk/jdk11/raw-file/tip/doc/building.html#getting-jdk-binaries
  1. openjdk11 源码下载地址: https://hg.openjdk.java.net/jdk-updates/jdk11u/file/9866de3d97db 选择左边的 bz2 下载(80MB左右,解压后由500多MB)

  2. Cygwin 准备,下载 setup-x86_64.exe, 下载页面 : https://cygwin.com/install.html

    1. 默认下载地址直接下载会失败,然后使用国内下载地址即可: http://mirrors.163.com/cygwin/ (测试时使用的清华源也没用)

    2. 安装完成之后根据文档说明再次安装必要的工具: https://hg.openjdk.java.net/jdk/jdk11/raw-file/tip/doc/building.html#windows

      /setup-x86_64 -q -P autoconf -P make -P unzip -P zip
      
  3. Visual Studio 准备, openjdk 11 只能使用 2010 -2017版本的visual studio软件,所以这里就安装2017版本的 visual studio 。下载页面: [https://my.visualstudio.com/Downloads?q=visual%20studio%202017](https://my.visualstudio.com/Downloads?q=visual studio 2017)

  4. 在 Cygwin shell 里面cd 到openjdk11 源码的根目录,执行configure命令

    bash configure --with-debug-level=slowdebug --with-jvm-variants=server --with-boot-jdk= --with-target-bits=64 --disable-warnings-as-errors
    
  5. 执行 make all , 等待时间比较长。结果保存在 build 目录下

Configure 命令报错问题:

  1. Target CPU mismatch. We are building for x86_64 but CL is for ""; expected "x64"

    解决方案: 找到编译源码目录下的 make\autoconf 文件夹下的文件 toolchain.m4, 找到报错的这一行, 将 AC_MSG_ERROR 改为 AC_MSG_RESULT

make 命令报错问题:

  1. test\hotspot\gtest\utilities\test_json.cpp 里面的字符串格式问题。

    将原先的四个TEST_VM函数改成这四个:
    TEST_VM(utilities, json_key_values_1) {
        JSON_GTest::test("/* comment */{ key1 : { \"key2\" : { \"key3\" : [ \"elem1\", \"elem2\","
                "{ \"key4\" : null }, 3 , 2 , 1 , 0 , -1 , -2 , -3 , true, false, null, ] }, \"key5\""
                " : true }, \"key6\" : [ \"☃\" ], key7 : \"val\",}", true);
    }
    
    TEST_VM(utilities, json_key_values_2) {
        JSON_GTest::test("/* comment */ { \"key1\" : { \"key2\" : { \"key3\" : [ \"elem1\", \"elem2\","
                "{ \"key4\" : null }, 3 , 2 , 1 , 0 , -1 , -2 , -3 , true, false, null, ] }, \"key5\""
                " : true }, \"key6\" : [ \"☃\" ], key7 : \"val\",}", true);
    }
    
    TEST_VM(utilities, json_quoted_symbols) {
        JSON_GTest::test("/*comment*/{\"ff1 fsd\":{\"☃\":{\"☃\":[\"☃\",\"☃\"]},"
                "\"☃\":true},\"☃\":[\"☃\"],\"foo\":\"☃\",}", true);
    }
    
    TEST_VM(utilities, json_incorrect_key) {
        JSON_GTest::test("/* comment */ { key1 error : { \"☃\" : { \"☃\" : [ \"☃\","
                " \"☃\" ] }, \"☃\" : true }, \"baz\" : [ \"☃\" ], foo : \"☃\",}",
                false); // first key needs to be quoted since t contains a space
    }
    

DEBUG 测试:

​ 使用 Clion IDE 测试代码,New CMake Project From Sources => 选择我们上面的源码目录 , 等待 ide 导入完成,然后编辑启动配置,默认会IDE会生成一个启动配置,我们基于它的基础上修改改。Executable 定位到我们编译结果里面的java.exe程序。 加些参数方便测试

1588777580097.png

-version -XX:TraceBytecodes -XX:StopInterpreterAt=

入口类在 src\java.base\share\native\libjli\java.cJavaMain(void * _args) 方法。打断点就行了

1588777768122.png

你可能感兴趣的:(OpenJdk11在windows10 上编译测试)