Hey @Alexander
The error message you are encountering, "cc1.exe: out of memory allocating 4072 bytes" suggests that the GCC compiler is running out of memory while trying to compile the model. Here are some strategies that might resolve this issue without splitting your model:
- If you are compiling on a system with limited memory, consider increasing the available memory. This might involve closing other applications or processes that are consuming RAM.
- You can try adjusting the compiler flags to optimize memory usage during compilation. For example, using optimization flags like '-O2' or '-O3' can sometimes help manage memory better, though they might increase compile time.
- If your system supports it, enabling swap space can help when physical RAM is exhausted. This will allow your system to use disk space as additional memory.
Implementing one or a combination of these strategies should help to overcome the memory limitation issue during compilation.
Please go through this following official MATLAB documentation, to resolve out of memory errors.
Hope this helps