Raise the maximum text size value to 128MB, this allows binaries such as clang which

currently has a text area of around 96MB to execute successfully on macppc.

ok macallan
This commit is contained in:
sevan 2017-08-17 22:55:47 +00:00
parent 7659ce9cff
commit d273c9486a

View File

@ -55,7 +55,7 @@
#endif
#ifndef MAXTSIZ
#define MAXTSIZ (64*1024*1024) /* maximum text size */
#define MAXTSIZ (128*1024*1024) /* maximum text size */
#endif
#ifndef MAXDSIZ