Last active
May 13, 2022 17:11
-
-
Save jyukutyo/de3a54eaeb5408b2016785543ba85b2e to your computer and use it in GitHub Desktop.
Build OpenJDK on CLion
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
cmake_minimum_required(VERSION 3.7) | |
project(hotspot) | |
include_directories( | |
src/hotspot/cpu | |
src/hotspot/os | |
src/hotspot/os_cpu | |
src/hotspot/share | |
src/hotspot/share/precompiled | |
src/hotspot/share/include | |
src/java.base/unix/native/include | |
src/java.base/share/native/include | |
) | |
file(GLOB_RECURSE SOURCE_FILES "*.cpp" "*.hpp" "*.c" "*.h") | |
add_executable(hotspot ${SOURCE_FILES}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot!
I'm a C/CLion newbie so it might be a stupid question but it seems that one particular reference is unresolved and that is VM_Version in in Threads::create_vm - any idea why?