You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently CLANGPDB is only supported for X86 & X64 builds. Because many of the ARM specific files are written in a GCC centric way, having AARCH64 support in clang would allow for more portable use of this codebase for AARCH64 builds.
I have done some experimenting and found the following issues so far.
Various .S files use the .type and .size assembly directives in the format for ELF images and so compiling for COFF format does not work.
OpenSSL tries to pull in Windows.h which is not found currently and maybe shouldn't be used.
Other issues I have solved locally and will put into a PR.
The text was updated successfully, but these errors were encountered:
Currently CLANGPDB is only supported for X86 & X64 builds. Because many of the ARM specific files are written in a GCC centric way, having AARCH64 support in clang would allow for more portable use of this codebase for AARCH64 builds.
I have done some experimenting and found the following issues so far.
.type
and.size
assembly directives in the format for ELF images and so compiling for COFF format does not work.Other issues I have solved locally and will put into a PR.
The text was updated successfully, but these errors were encountered: