-
Notifications
You must be signed in to change notification settings - Fork 722
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 build update for off-heap #20461
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,18 +21,20 @@ | |
################################################################################ | ||
|
||
#TODO: Env vars should be auto detected by platform | ||
|
||
# Prevent CMake from automatically creating export lists for shared libraries | ||
set(CMAKE_XL_CreateExportList "" CACHE INTERNAL "") | ||
|
||
set(J9VM_ARCH_POWER ON CACHE BOOL "") | ||
set(J9VM_ENV_DATA64 ON CACHE BOOL "") | ||
set(J9VM_ENV_DLPAR ON CACHE BOOL "") | ||
set(J9VM_ENV_HAS_FPU ON CACHE BOOL "") | ||
set(J9VM_ENV_SHARED_LIBS_CALLEE_GLOBAL_TABLE_SETUP OFF CACHE BOOL "") | ||
set(J9VM_ENV_SHARED_LIBS_USE_GLOBAL_TABLE ON CACHE BOOL "") | ||
|
||
# Prevent CMake from automatically creating export lists for shared libraries | ||
set(CMAKE_XL_CreateExportList "" CACHE INTERNAL "") | ||
|
||
set(J9VM_GC_TLH_PREFETCH_FTA OFF CACHE BOOL "") | ||
set(J9VM_GC_SPARSE_HEAP_ALLOCATION ON CACHE BOOL "") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is the plan to change all the references in JIT code from There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. @rmnattas, apologies for the inconvenience, but please update the JIT references. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it also in the plan to update UMA builds to support this flag? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, about to merge that PR. |
||
set(J9VM_GC_SUBPOOLS_ALIAS ON CACHE BOOL "") | ||
set(J9VM_GC_TLH_PREFETCH_FTA OFF CACHE BOOL "") | ||
set(J9VM_INTERP_ATOMIC_FREE_JNI ON CACHE BOOL "") | ||
set(J9VM_INTERP_ATOMIC_FREE_JNI_USES_FLUSH ON CACHE BOOL "") | ||
set(J9VM_INTERP_TWO_PASS_EXCLUSIVE ON CACHE BOOL "") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perhaps leave extra space after the TODO line, which I don't know what it really refers, but like this it looks like it refers to the next 'set' line only
perhaps we can even remove the TODO line!?