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
r_address
...
Since this field is only 24 bits long, the offset in this field can never be larger than 0x00FFFFFF, thus limiting the size of the relocatable contents of this image to 16 megabytes.
Possibly we can fiddle linker and LLVM options to not generate these. Or we can get our codegen improved to the point where none of our libraries are 16+mb, which would be cool.
The text was updated successfully, but these errors were encountered:
Testing locally, we now bootstrap (apparently our memory usage is down). If we want to ensure this doesn't regress we should add a builder with this configuration.
similar_names: No longer suggest inserting or appending an underscore
changelog: [`similar_names`] lint no longer suggests to insert or add an underscore to "fix" too similar names
It appears to have trouble linking.
Possibly related: http://code.google.com/p/go/issues/detail?id=3253
No idea really. It does seem like mach-o has something called a "scattered" reloc, and that this has only a 24bit displacement:
http://developer.apple.com/library/Mac/documentation/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html#//apple_ref/c/tag/scattered_relocation_info
Possibly we can fiddle linker and LLVM options to not generate these. Or we can get our codegen improved to the point where none of our libraries are 16+mb, which would be cool.
The text was updated successfully, but these errors were encountered: