1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-03 12:35:02 +00:00

Increase maximum text segment size.

LLVM binaries are huge...

MFC after:	3 days
This commit is contained in:
Michal Meloun 2017-05-19 11:45:14 +00:00
parent d196c9ee16
commit d304b9ec4a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=318530

View File

@ -42,7 +42,7 @@
* Virtual memory related constants, all in bytes
*/
#ifndef MAXTSIZ
#define MAXTSIZ (64UL*1024*1024) /* max text size */
#define MAXTSIZ (256UL*1024*1024) /* max text size */
#endif
#ifndef DFLDSIZ
#define DFLDSIZ (128UL*1024*1024) /* initial data size limit */