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

Add arm64 signed official builds. #209

Merged
merged 3 commits into from
Oct 6, 2021

Conversation

BillyONeal
Copy link
Member

No description provided.

@BillyONeal
Copy link
Member Author

CMakeLists.txt Outdated
@@ -137,6 +138,9 @@ target_compile_definitions(vcpkglib PUBLIC
VCPKG_VERSION=${VCPKG_VERSION}
VCPKG_BASE_VERSION=${VCPKG_BASE_VERSION}
)
if (WIN32)
target_compile_options(vcpkglib PRIVATE /EHsc)
endif()
Copy link
Contributor

Choose a reason for hiding this comment

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

Best to add /EHsc to CMAKE_CXX_FLAGS, I think, given that we're adding it to every C++ target; at some point before add_library, write string(APPEND CMAKE_CXX_FLAGS " /EHsc")

Copy link
Contributor

@ras0219 ras0219 left a comment

Choose a reason for hiding this comment

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

If we're going to be splitting on host architecture for Windows, does it make sense to also add x64?

@BillyONeal
Copy link
Member Author

If we're going to be splitting on host architecture for Windows, does it make sense to also add x64?

Do we have a use case? The original rationale for doing x86 only was that we don't do anything where perf matters and the x86 version runs on everything. ARM changed that; to my understanding the x86 on arm behavior is a lot less reasonable/transparent than the x86 on x64 behavior.

I suppose technically the WOW64 subsystem can be uninstalled on servers but that's also likely to break most of our catalog so I'm not sure how much worrying about that is worth?

@BillyONeal BillyONeal merged commit 0cd3673 into microsoft:main Oct 6, 2021
@BillyONeal BillyONeal deleted the dev/bion/arm64 branch October 6, 2021 01:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants