> 1. Added logic to look in the standard locations for Visual Studio 2022, with 
> a fallback to 2019 and then 2017 if 2022 is not found. It will look in the 
> following locations:
> 
> C:("Program Files"|"Program Files (x86)")\Microsoft Visual 
> Studio(2022|2019|2017)\
>      (Enterprise|Professional|Community)\VC\Auxiliary\Build
> 
> 2. Use `VSCOMNTOOLS` as the primary way for a developer to specify a custom 
> location for Visual Studio, with `VS150COMNTOOLS` as a legacy fallback (a 
> warning is printed if `VS150COMNTOOLS` is set). If a developer installs 
> Visual Studio in the default location, there will be no need to set this any 
> more.
> 3. Removed support for older compilers (VS2010 and VS2013 in particular), 
> since they will no longer work anyway. We were still using the 32-bit version 
> of the script in many cases, which is unnecessary and no longer makes sense, 
> so as part of this cleanup, I now consistently use `vcvars64.bat` to set up 
> the environment.
> 4. Modified the GitHub actions build to no longer specify `VS150COMNTOOLS`, 
> since it will now find it automatically.
> 5. Removed the following unused variables:
> 
> DEVENVCMD
> DXSDK_DIR
> VS_VER
> 
> 6. Changed most of the defaults in `win.gradle` to the empty string. The 
> defaults were a misguided attempt to set values to something in case the 
> Visual Studio installation cannot be found. By not having defaults, it will 
> be more obvious if something goes wrong (and will fail fast).
> 7. If the Visual Studio Installation cannot be found, it will print a 
> sensible error message and retry the next time the build is run (making it 
> less likely that a manual `rm -rf build` is needed).
> 8. Fixed a bug where the Microsoft redist files were not being located and 
> copied into the build dir (build/sdk/bin).
> 
> 
> I left some debug print statements in, and will remove them in a follow-on 
> commit.
> 
> I have tested this with a local installation of Visual Studio 2022 Community 
> and, via GitHub Actions, an installation of Visual Studio 2022 Enterprise. On 
> my local system, I built with and without Media and WebKit.

Kevin Rushforth has updated the pull request incrementally with one additional 
commit since the last revision:

  Revert "Add debug prints"
  
  This reverts commit 3ea8ee58867d21e5c0aeb6a22170cdc28dd7a486.

-------------

Changes:
  - all: https://git.openjdk.org/jfx/pull/1534/files
  - new: https://git.openjdk.org/jfx/pull/1534/files/99f3804c..b6972b36

Webrevs:
 - full: https://webrevs.openjdk.org/?repo=jfx&pr=1534&range=01
 - incr: https://webrevs.openjdk.org/?repo=jfx&pr=1534&range=00-01

  Stats: 28 lines in 2 files changed: 0 ins; 28 del; 0 mod
  Patch: https://git.openjdk.org/jfx/pull/1534.diff
  Fetch: git fetch https://git.openjdk.org/jfx.git pull/1534/head:pull/1534

PR: https://git.openjdk.org/jfx/pull/1534

Reply via email to