-
Notifications
You must be signed in to change notification settings - Fork 463
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
8242507: Add support for Visual Studio 2019 #195
Conversation
Load vsruntime140_1.dll if present
/reviewers 2 |
@arapte can you be the second reviewer on this? |
👋 Welcome back kcr! A progress list of the required criteria for merging this PR into |
@kevinrushforth |
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.
Looks good to me, verified the build locally.
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.
Confirmed to work on our build systems.
@kevinrushforth This change now passes all automated pre-integration checks. When the change also fulfills all project specific requirements, type
Since the source branch of this PR was last updated there have been 20 commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid automatic rebasing, please merge ➡️ To integrate this PR with the above commit message to the |
/integrate |
@kevinrushforth The following commits have been pushed to master since your change was applied:
Your commit was automatically rebased without conflicts. Pushed as commit 2e90076. |
This PR adds support for Microsoft Visual Studio 2019 (VS 2019), but does not change the default compiler, which remains at VS 2017 15.9.16. Changing the build compiler to VS 2019 will be proposed in a future PR using a new bug ID, and isn't planned until after the JDK updates their compiler.
In order to allow developer builds to use Microsoft Visual Studio 2019, we need the following changes at build time and runtime.
At build time:
vsruntime140_1.dll
(if present) to outputsdk/bin
dirconcrt140.dll
(it is not used in VS 2017 either)At runtime:
vsruntime140_1.dll
if presentconcrt140.dll
Additionally, I removed two unused build variables,
ext.MSVCR
andext.MSVCP
, which would otherwise have needed to be updated.I have done a full build and test run using both VS 2017 (which is still the default), and VS 2019.
Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jfx pull/195/head:pull/195
$ git checkout pull/195