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
LLVM does not support objects larger than 1<<61 bytes, because it represents sizes as u64 counts of bits.
Currently, to be safe, I'm blocking compile-time objects bigger than 2 GiB (in case LLVM uses an int count of bytes somewhere). It would be nice to find out how much can we increase this, especially on 64-bit targets.
The text was updated successfully, but these errors were encountered:
This fixes the gap in the language definition causing rust-lang#18726 by defining
a clear bound on the maximum size for libraries to enforce.
Closesrust-lang#18069
LLVM does not support objects larger than
1<<61
bytes, because it represents sizes asu64
counts of bits.Currently, to be safe, I'm blocking compile-time objects bigger than 2 GiB (in case LLVM uses an int count of bytes somewhere). It would be nice to find out how much can we increase this, especially on 64-bit targets.
The text was updated successfully, but these errors were encountered: