Skip to content

Commit

Permalink
Fix buildbase.bat for ARM64:
Browse files Browse the repository at this point in the history
- update version check to use **greater-than-or-equal**, i.e. to include VS 2019 **and** 2022 (or later versions)
- select the `ARM64` environment (`x86_arm64` is not valid)
  • Loading branch information
nil4 authored and jedisct1 committed Dec 4, 2024
1 parent 584f61d commit 39d280b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builds/msvc/build/buildbase.bat
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ ECHO Configuration=StaticRelease
msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=x64 %solution% >> %log%
IF errorlevel 1 GOTO error

@REM Build ARM64 packages only for Visual studio 19 and later
IF %version% == 16 (
CALL !environment! x86_arm64 > nul
@REM Build ARM64 packages only for Visual studio 2019 and later
IF %version% GEQ 16 (
CALL !environment! ARM64 > nul
ECHO Platform=ARM64

ECHO Configuration=DynDebug
Expand Down

0 comments on commit 39d280b

Please sign in to comment.