Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 May 2017 11:45:14 +0000 (UTC)
From:      Michal Meloun <mmel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r318530 - head/sys/arm/include
Message-ID:  <201705191145.v4JBjEWh088694@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705191145.v4JBjEWh088694>