-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
build: enable Clang-cl Windows builds #35433
Changes from all commits
ff3a4ec
26e51ff
711a822
bbf0efc
3ccb17d
273cb2b
6ec7554
1f149ca
d4fe780
9d7c136
1a5726a
d5302f5
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 |
---|---|---|
|
@@ -846,8 +846,9 @@ getArchitecture(uint16_t *pCPU, uint16_t *pBits, UBool *pIsBigEndian, const char | |
// for all architectures though. | ||
# if defined(_M_IX86) | ||
*pCPU = IMAGE_FILE_MACHINE_I386; | ||
// TODO: detect ARM64 | ||
# else | ||
*pCPU = IMAGE_FILE_MACHINE_UNKNOWN; | ||
*pCPU = IMAGE_FILE_MACHINE_AMD64; | ||
Comment on lines
+849
to
+851
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. I tried an ARM64 build and got an error connected to these changes. After some investigation, I found that dealing with a What we can do, is add another option to |
||
# endif | ||
# if defined(_M_IA64) || defined(_M_AMD64) || defined (_M_ARM64) | ||
*pBits = 64; // Doesn't seem to be used for anything interesting though? | ||
|
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.
This is for #34201