-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Build tests for ARM64EC pipeline #5521
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
Changes from all commits
80fdaab
844c8a5
5eeae81
28d8f22
0d82a38
380decd
5fe867f
9e74985
e7fc8b6
7e44d3f
dac9ada
ecffa45
abfbdab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,13 @@ | |
|
||
// Note: To properly test the fix for VSO-1775715, don't include any headers here. | ||
|
||
// TRANSITION, Windows SDK 10.0.22621.0 causes this test to fail for ARM64EC with: | ||
// "error LNK2019: unresolved external symbol fabsf referenced in function #fabsf$exit_thunk (EC Symbol)" | ||
// Windows SDK 10.0.26100.0 will avoid that error, but we'll need to investigate why user.ixx emits: | ||
// "error C2678: binary '==': no operator found which takes a left-hand operand of type 'const std::string' | ||
// (or there is no acceptable conversion)" | ||
Comment on lines
+8
to
+10
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This error C2678 turns out to be unaffected by architecture or Windows SDK version, and affected by the execution charset: error C2678 manifests if and only if the execution charset is not self-synchronizing (e.g. cp932, cp936). With cp1252 or UTF-8, the test compiles successfully. No change requested for this PR,but we could maybe file a bug report against the compiler. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like something in some non- |
||
// UNSUPPORTED: arm64ec | ||
|
||
import User; | ||
|
||
int main() { | ||
|
Uh oh!
There was an error while loading. Please reload this page.