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
Mark the following symbols as `static` to prevent duplicate definitions:
`__builtin_ctz`
`__builtin_clz`
`__builtin_clzll`
`__builtin_sadd_overflow`
>Without these then all of these functions show up in all object files
which include int_lib.h on Windows. This'll help prevent duplicate
symbols by ensuring they're not exported.
See:
rust-lang/compiler-builtins#167https://reviews.llvm.org/D34599
This is due to the fact that their definition is not marked
static
. Filing an issue to track this, gonna add a FIXME for now.The text was updated successfully, but these errors were encountered: