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
order limits.h before stdlib.h to workaround for glibc _FORTIFY_SOURCE (#1184)
`limits.h` must be included before `stdlib.h` when building with glibc
and having `_FORTIFY_SOURCE` set to a non-zero value.
When building with `_FORTIFY_SOURCE`, `realpath()` is inlined, and its
definition depends on whether `limits.h` has been included or not
(clearly, this is a terrible idea in terms of interacting with Clang
modules and should probably be fixed upstream). If the definition
differs from the one in SwiftGlibc, then _TestingInternals will not
build.
0 commit comments