-
Notifications
You must be signed in to change notification settings - Fork 138
VS 2022 SLN builds Debug and Release for ARM64 #919
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
Conversation
|
Note: this PR will not go to main until 2510 has released. |
|
/azp run libHttpClient.CI |
|
Azure Pipelines failed to run 1 pipeline(s). |
|
I need help validating the change to the pipeline build - I uncommented the VS2022 section, but have no idea if that works. |
| <AdditionalDependencies>$(Console_Libs);%(AdditionalDependencies)</AdditionalDependencies> | ||
| <AdditionalDependencies Condition="'$(Platform)'=='x64'">xgameruntime.lib;XCurl.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
| </Link> | ||
| <AdditionalDependencies Condition="'$(Platform)'=='ARM64'">xgameruntime.lib;%(AdditionalDependencies)</AdditionalDependencies> |
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.
Only for my personal learning, why is it that we don't need XCurl.lib in ARM64 platform?
Made the ARM64 build closely follow the x64 build in all cases.