-
Notifications
You must be signed in to change notification settings - Fork 733
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: rework platform handling in port library #5268
Conversation
@@ -31,33 +31,57 @@ | |||
|
|||
|
|||
set(OBJECTS "") | |||
list(APPEND OBJECTS | |||
list(APPEND OBJECTS | |||
j9gp.c |
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.
Can these lists be kept in alphabetical order?
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.
Sure, I just reordered so that it would match the module.xml. I'm assuming I should reorder that as well?
runtime/port/CMakeLists.txt
Outdated
|
||
if(OMR_OS_ZOS) | ||
list(APPEND OBJECTS | ||
j9mprotect.s |
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.
alphabetize this list if possible
Clean up platform specific code as well as adding support for missed platforms Signed-off-by: Devin Nakamura <[email protected]>
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.
lgtm
Jenkins compile zlinux,win,aix jdk8 |
Clean up platform specific code as well as adding support for missed
platforms
Signed-off-by: Devin Nakamura [email protected]