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

Update the DIA include in the doc for building Windows jdk8 #21140

Merged
merged 1 commit into from
Feb 20, 2025

Conversation

pshipton
Copy link
Member

No description provided.

@pshipton pshipton requested a review from keithc-ca February 18, 2025 22:51
@pshipton pshipton changed the title Update the DIA include for build Windows jdk8 Update the DIA include in the doc for building Windows jdk8 Feb 18, 2025
@pshipton pshipton marked this pull request as draft February 18, 2025 23:11
@@ -377,7 +377,7 @@ export PATH="/cygdrive/c/Program Files/NASM:$PATH" (in Cygwin)
Update your `INCLUDE` environment variable to provide a path to the Windows debugging tools with the following command:

```
set INCLUDE=C:\Program Files\Debugging Tools for Windows (x64)\sdk\inc;%INCLUDE%
export INCLUDE=C:\Program Files\Microsoft Visual Studio\2022\Community\DIA SDK\include;%INCLUDE%
Copy link
Member Author

Choose a reason for hiding this comment

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

Do I need to change %INCLUDE%?

Copy link
Contributor

Choose a reason for hiding this comment

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

The intent here is to use the set command in the Windows cmd.exe context.

Copy link
Member Author

Choose a reason for hiding this comment

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

I never run cmd, I just run a cygwin terminal from the start menu. The modified command works for me.

Copy link
Member Author

Choose a reason for hiding this comment

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

It's also consistent with the previous commands for updating the PATH.

@pshipton pshipton marked this pull request as ready for review February 18, 2025 23:18
@@ -377,7 +377,7 @@ export PATH="/cygdrive/c/Program Files/NASM:$PATH" (in Cygwin)
Update your `INCLUDE` environment variable to provide a path to the Windows debugging tools with the following command:

```
set INCLUDE=C:\Program Files\Debugging Tools for Windows (x64)\sdk\inc;%INCLUDE%
export "INCLUDE=C:\Program Files\Microsoft Visual Studio\2022\Community\DIA SDK\include;$INCLUDE"
Copy link
Contributor

Choose a reason for hiding this comment

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

Ok, consistently using bash commands is probably better, but this should use single quotes, without the reference to the old value (which is not needed for building Java 8):

export INCLUDE='C:\Program Files\Microsoft Visual Studio\2022\Community\DIA SDK\include'

(so \ characters are taken literally, not as escapes)

Copy link
Member Author

Choose a reason for hiding this comment

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

Updated.

@keithc-ca keithc-ca merged commit fbf4d38 into eclipse-openj9:master Feb 20, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants