-
Notifications
You must be signed in to change notification settings - Fork 728
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
OSX RasDump Support #3380
Comments
fyi - @pshipton @DanHeidinga related to #36. |
@pdbain-ibm yes, it is related to [8]; |
babsingh
added a commit
to babsingh/openj9
that referenced
this issue
Oct 24, 2018
More details here: eclipse-openj9#3380. closes: eclipse-openj9#3380. closes: eclipse-openj9#3343. Signed-off-by: Babneet Singh <[email protected]>
acrowthe
pushed a commit
to acrowthe/openj9
that referenced
this issue
Nov 5, 2018
More details here: eclipse-openj9#3380. closes: eclipse-openj9#3380. closes: eclipse-openj9#3343. Signed-off-by: Babneet Singh <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While building OpenJ9 JDK8, the following warning was seen:
For the time being, the above warning doesn't impact the OpenJ9 JDK8 build process since the feature to treat warnings as errors can be disabled. The above warning should be resolved since the end-goal is to treat warnings as errors when building OpenJ9.
The above warning showed that
defined(OSX)
is unused in the rasdump directory.Exploring
defined(LINUX)
locations wheredefined(OSX)
may need to be enabled:doSystemDump
. It seems relevant to OSX. I think it should be enabled./proc/sys/kernel/sched_compat_yield
,/proc/sys/kernel/core_pattern
and/proc/sys/kernel/core_uses_pid
don't exist on OSX.alloca
function is defined instdlib.h
. so,alloca.h
is not needed on OSX. Reference - compile error on freebsd / macosx due to missing 'alloca.h' h2o/h2o#47.lldb
variant as shown below.fork
,execl
andwaitpid
exist on OSX.fixDumpLabel
. It is relevant for OSX, and should be enabled.getcwd
exists on OSX.The text was updated successfully, but these errors were encountered: