Skip to content

Commit e2f97a8

Browse files
committed
CMake: Implement final changes to allow for non-staging build
With this the cmake side supports building without staging the source files Signed-off-by: Devin Nakamura <devinn@ca.ibm.com>
1 parent 43ef147 commit e2f97a8

File tree

5 files changed

+36
-11
lines changed

5 files changed

+36
-11
lines changed

CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
################################################################################
2-
# Copyright (c) 2018, 2018 IBM Corp. and others
2+
# Copyright (c) 2018, 2019 IBM Corp. and others
33
#
44
# This program and the accompanying materials are made available under
55
# the terms of the Eclipse Public License 2.0 which accompanies this
@@ -38,9 +38,9 @@ else()
3838
include(FindJava)
3939
endif()
4040

41-
# Note: these are temporary transition variables
42-
set(J9VM_GEN_NLS TRUE) # if true, generate nls headers from cmake
43-
set(J9VM_GEN_CP TRUE) # if true, generate constantpool files from cmake
41+
# Note: this is a temporary transition variable
42+
set(J9VM_IS_NON_STAGING TRUE)
43+
4444

4545
add_subdirectory(sourcetools)
4646
add_subdirectory(runtime)

runtime/CMakeLists.txt

+22-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ endif()
5151
# Pull in definitions for omr_add_hookgen and omr_add_tracegen
5252
# these will be in omr/cmake/modules
5353
include(OmrHookgen)
54-
set(OMR_TRACE_ROOT "${CMAKE_CURRENT_SOURCE_DIR}")
54+
if(J9VM_IS_NON_STAGING)
55+
set(OMR_TRACE_ROOT "${CMAKE_CURRENT_BINARY_DIR}")
56+
else()
57+
set(OMR_TRACE_ROOT "${CMAKE_CURRENT_SOURCE_DIR}")
58+
endif()
5559
include(OmrTracegen)
5660

5761
include(cmake/build_tags.cmake)
@@ -84,6 +88,14 @@ set(OMR_INSTALL_BIN_DIR "${j9vm_SOURCE_DIR}" CACHE PATH "")
8488
set(OMR_INSTALL_LIB_DIR "${j9vm_SOURCE_DIR}" CACHE PATH "")
8589
set(OMR_INSTALL_ARCHIVE_DIR "${j9vm_SOURCE_DIR}/lib" CACHE PATH "")
8690

91+
# if this is a non-staging build, we want to put binaries in current source dir
92+
if(J9VM_IS_NON_STAGING)
93+
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
94+
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
95+
# we also want to set the RPATH properly
96+
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
97+
endif()
98+
8799
# Generic configuration for omr
88100
include(cmake/omr_config.cmake)
89101

@@ -122,7 +134,7 @@ add_custom_target(j9vm_hookgen
122134
)
123135

124136
# Generate NLS headers
125-
if(J9VM_GEN_NLS)
137+
if(J9VM_IS_NON_STAGING)
126138
add_custom_command(
127139
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/java.properties"
128140
DEPENDS j9nls
@@ -160,6 +172,12 @@ add_custom_target(j9vm_m4gen
160172
"${CMAKE_CURRENT_BINARY_DIR}/j9vm/generated.h"
161173
)
162174

175+
if(J9VM_IS_NON_STAGING)
176+
add_custom_target(copy_default_options ALL
177+
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/options.default" "${CMAKE_CURRENT_BINARY_DIR}/options.default"
178+
)
179+
endif()
180+
163181
###
164182
### Helper interface libraries
165183
###
@@ -174,9 +192,10 @@ target_include_directories(j9vm_interface
174192
${J9VM_OMR_DIR}/include_core
175193
${CMAKE_CURRENT_BINARY_DIR}/omr
176194
${CMAKE_CURRENT_BINARY_DIR}
195+
${CMAKE_BINARY_DIR}
177196
)
178197

179-
if(J9VM_GEN_NLS)
198+
if(J9VM_IS_NON_STAGING)
180199
target_include_directories(j9vm_interface INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/nls)
181200
else()
182201
target_include_directories(j9vm_interface INTERFACE nls)

runtime/hyvm/CMakeLists.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ target_link_libraries(harmony_jvm
4141
)
4242

4343
# We actually want the library to be named "jvm.{so|dll}"
44-
set_target_properties(harmony_jvm PROPERTIES LIBRARY_OUTPUT_NAME "jvm")
44+
set_target_properties(harmony_jvm PROPERTIES
45+
LIBRARY_OUTPUT_NAME "jvm"
46+
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
47+
)
4548

4649
install(
4750
TARGETS harmony_jvm

runtime/jcl/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ else()
5353
endif()
5454

5555
# Generate constant pool files
56-
if(J9VM_GEN_CP)
56+
if(J9VM_IS_NON_STAGING)
5757
set(CONST_POOL_OUT_DIR "${j9vm_BINARY_DIR}")
5858

5959
# List of files generated by J9VMCPTool
@@ -88,7 +88,7 @@ if(J9VM_GEN_CP)
8888
add_custom_target(run_cptool
8989
DEPENDS ${gen_constpool_files}
9090
)
91-
add_dependencies(jclse run_cptool)
91+
add_dependencies(j9vm_interface run_cptool)
9292
set(cp_file_name ${CONST_POOL_OUT_DIR}/j9vmconstantpool.c)
9393
set_source_files_properties(${cp_file_name} PROPERTIES GENERATED TRUE)
9494
target_sources(jclse PRIVATE ${cp_file_name})

runtime/redirector/CMakeLists.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ target_include_directories(jvm_redirect
4242
"${j9vm_SOURCE_DIR}/j9vm"
4343
"${j9vm_BINARY_DIR}/j9vm"
4444
)
45-
set_target_properties(jvm_redirect PROPERTIES LIBRARY_OUTPUT_NAME jvm)
45+
set_target_properties(jvm_redirect PROPERTIES
46+
LIBRARY_OUTPUT_NAME jvm
47+
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
48+
)
4649

4750
install(
4851
TARGETS jvm_redirect

0 commit comments

Comments
 (0)