https://bugs.winehq.org/show_bug.cgi?id=48172
--- Comment #6 from Stefan Dösinger stefan@codeweavers.com --- What this depends on is the bitness of the process (in your case the .exe file). In a 32 bit process a void * has a size of 32 bits, so the highest address it can address is 2^32 == 0xffffffff == 4294967295 == 4 GB. In those 4 GB address space executable code, data, memory mappings for I/O (e.g. OpenGL resources) have to fit.
The correct answer for your issue is to use a 64 bit program. Do you have an actual use case where you depend on decompressing such a huge archive with a 32 bit .exe that can't be replaced by a 64 bit one? E.g. is this a 32 bit installer of a third party app that expects to do this?