svn commit: r318530 - head/sys/arm/include
Michal Meloun
mmel at FreeBSD.org
Fri May 19 11:45:15 UTC 2017
Author: mmel
Date: Fri May 19 11:45:14 2017
New Revision: 318530
URL: https://svnweb.freebsd.org/changeset/base/318530
Log:
Increase maximum text segment size.
LLVM binaries are huge...
MFC after: 3 days
Modified:
head/sys/arm/include/vmparam.h
Modified: head/sys/arm/include/vmparam.h
==============================================================================
--- head/sys/arm/include/vmparam.h Fri May 19 10:16:51 2017 (r318529)
+++ head/sys/arm/include/vmparam.h Fri May 19 11:45:14 2017 (r318530)
@@ -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 */
More information about the svn-src-head
mailing list