svn commit: r318637 - stable/11/sys/arm/include

Michal Meloun mmel at FreeBSD.org
Mon May 22 12:35:32 UTC 2017


Author: mmel
Date: Mon May 22 12:35:31 2017
New Revision: 318637
URL: https://svnweb.freebsd.org/changeset/base/318637

Log:
  MFC r318530:
  
    Increase maximum text segment size.  LLVM binaries are huge...

Modified:
  stable/11/sys/arm/include/vmparam.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/arm/include/vmparam.h
==============================================================================
--- stable/11/sys/arm/include/vmparam.h	Mon May 22 12:28:20 2017	(r318636)
+++ stable/11/sys/arm/include/vmparam.h	Mon May 22 12:35:31 2017	(r318637)
@@ -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-stable mailing list