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
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
This fixes 3 different sets of build issues seen when compiling with
Clang 10.
- Clang 10 fails to compile slist.h because the code contained is
actually invalid. The assignment operator being used doesn't exist.
This is a backport of dotnet/runtime#33096
- Clang 10 has moved exception-handling mismatches in function
declarations under the -fms-compatibility flag (instead of the
-fms-extensions flag). Our declarations of atoll and other similar
functions are missing the exception declaration `throw()`. This
mismatch in exception declarations makes clang 10 unable to build this
code. Fix it by defining THROW_DECL as `throw()` which is supported at
least as far back as clang 3.3.
This is a backport of dotnet/runtime#32837
- Clang 10 has enabled additional warnings. Lets turn of -Werror
globally in this release branch by making the `-ignorewarnings` switch
to `./build.sh` be the default.
0 commit comments