Search Issue Tracker
Won't Fix
Votes
1
Found in
5.4.0f3
Issue ID
888423
Regression
No
[IL2CPP] Build hangs while building a project with a large array of strings
Reproduction steps:
1. Open the attached project.
2. Make sure Scripting Backend is set to IL2CPP.
3. Build and run the project with iOS/Android platform.
- Build hangs while building to device.
Reproduced with:
5.3.8f1, 5.6.0b11, 2017.1.0a3
iOS, Android
IL2CPP
Not reproducible with:
Mono2x
---------------------------------------
Response from Dev team:
This is due to the large array initializer of strings expanding to a very large method body without any branches. The array initialization looks like a constant operation in C#, but it really gets expanded in IL to a bunch of string allocations and stores into the array.
This aggravates C/C++ compiler, especially in release, as it tries to optimize this. We will look at better handling this issue, but not likely in the near future.
As a workaround, you can load the string data from an eternal file or encode it as a stream of bytes. You can then read the data into an array yourself and avoid the time/memory expended by the C++ compiler.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Graphics.DrawMeshNow stops rendering Render Texture after a few frames when viewed in the Player
- New selector in Matching Selectors displays as on line -1 in debugger
- The first frames are skipped when playing a video
- Text auto-scrolling can not work when naming assets/objects until backspace key is pressed
- Shadows are not cast when the Light's CullingMask and the GameObject's Layer do not match
Add comment