Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMake: add j9vm_jdk11 #4043

Merged
merged 3 commits into from
Jan 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
################################################################################
# Copyright (c) 2017, 2018 IBM Corp. and others
# Copyright (c) 2017, 2019 IBM Corp. and others
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License 2.0 which accompanies this
Expand Down Expand Up @@ -365,6 +365,8 @@ if(J9VM_MODULE_J9VM)
add_subdirectory(j9vm)
add_subdirectory(j9vm_b150)
add_subdirectory(j9vm_b156)
add_subdirectory(j9vm_jdk11)
dnakamura marked this conversation as resolved.
Show resolved Hide resolved
add_subdirectory(j9vm_jdk12)
endif()
#NOTE this is not conditional in the UMA module.xml
add_subdirectory(jcl)
Expand Down
49 changes: 49 additions & 0 deletions runtime/j9vm_jdk11/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
################################################################################
# Copyright (c) 2018, 2019 IBM Corp. and others
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License 2.0 which accompanies this
# distribution and is available at https://www.eclipse.org/legal/epl-2.0/
# or the Apache License, Version 2.0 which accompanies this distribution and
# is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# This Source Code may also be made available under the following
# Secondary Licenses when the conditions for such availability set
# forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
# General Public License, version 2 with the GNU Classpath
# Exception [1] and GNU General Public License, version 2 with the
# OpenJDK Assembly Exception [2].
#
# [1] https://www.gnu.org/software/classpath/license.html
# [2] http://openjdk.java.net/legal/assembly-exception.html
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
################################################################################

# We don't want to add the version suffix to dll names.
set(CMAKE_SHARED_LIBRARY_SUFFIX ${J9VM_OLD_SHARED_SUFFIX})

set_source_files_properties(
${j9vm_BINARY_DIR}/j9vm/ut_j9scar.c
${j9vm_BINARY_DIR}/j9vm/generated.h
PROPERTIES GENERATED TRUE
)

add_library(jvm_jdk11 SHARED ${j9vm_BINARY_DIR}/j9vm/ut_j9scar.c)
target_include_directories(jvm_jdk11 PRIVATE ${j9vm_SOURCE_DIR}/j9vm)
target_link_libraries(jvm_jdk11
PRIVATE
jvm_common
j9util_b156
)
add_dependencies(jvm_jdk11
omrgc_hookgen
trc_j9scar
)

set_target_properties(jvm_jdk11 PROPERTIES LIBRARY_OUTPUT_NAME jvm)

install(
TARGETS jvm_jdk11
LIBRARY DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}
)
49 changes: 49 additions & 0 deletions runtime/j9vm_jdk12/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
################################################################################
# Copyright (c) 2018, 2019 IBM Corp. and others
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License 2.0 which accompanies this
# distribution and is available at https://www.eclipse.org/legal/epl-2.0/
# or the Apache License, Version 2.0 which accompanies this distribution and
# is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# This Source Code may also be made available under the following
# Secondary Licenses when the conditions for such availability set
# forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
# General Public License, version 2 with the GNU Classpath
# Exception [1] and GNU General Public License, version 2 with the
# OpenJDK Assembly Exception [2].
#
# [1] https://www.gnu.org/software/classpath/license.html
# [2] http://openjdk.java.net/legal/assembly-exception.html
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
################################################################################

# We don't want to add the version suffix to dll names.
set(CMAKE_SHARED_LIBRARY_SUFFIX ${J9VM_OLD_SHARED_SUFFIX})

set_source_files_properties(
${j9vm_BINARY_DIR}/j9vm/ut_j9scar.c
${j9vm_BINARY_DIR}/j9vm/generated.h
PROPERTIES GENERATED TRUE
)

add_library(jvm_jdk12 SHARED ${j9vm_BINARY_DIR}/j9vm/ut_j9scar.c)
target_include_directories(jvm_jdk12 PRIVATE ${j9vm_SOURCE_DIR}/j9vm)
target_link_libraries(jvm_jdk12
PRIVATE
jvm_common
j9util_b156
)
add_dependencies(jvm_jdk12
omrgc_hookgen
trc_j9scar
)

set_target_properties(jvm_jdk12 PROPERTIES LIBRARY_OUTPUT_NAME jvm)

install(
TARGETS jvm_jdk12
LIBRARY DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}
)