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

Collect debuginfo files to help diagnose omr_ddrgen failures with gcc11 #18194

Merged
merged 1 commit into from Sep 25, 2023

Conversation

keithc-ca
Copy link
Contributor

@@ -531,6 +531,9 @@ def archive_diagnostics(javaVersionJdkImageDir = null) {
if (SPEC.contains('win')) {
// collect *.pdb files to help diagnose omr_ddrgen failures
findCrashDataCmd += " -o -name '*.pdb'"
} else if (SPEC.contains('gcc11')) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we collect .debuginfo for all linux specs rather than the special and temporary aarch64_linux_gcc11 spec?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated to apply for all linux specs.

Signed-off-by: Keith W. Campbell <keithc@ca.ibm.com>
if (SPEC.contains('win')) {
if (SPEC.contains('linux')) {
// collect *.debuginfo files to help diagnose omr_ddrgen failures
findCrashDataCmd += " -o -name '*.debuginfo'"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you going to need anything else like .so files?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, omr_ddrgen only reads .debuginfo files (on Linux).

@pshipton pshipton merged commit 252a6dd into eclipse-openj9:master Sep 25, 2023
2 checks passed
@keithc-ca keithc-ca deleted the gcc11 branch September 25, 2023 21:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants