Module Name:    src
Committed By:   sevan
Date:           Thu Aug 17 22:55:47 UTC 2017

Modified Files:
        src/sys/arch/powerpc/include/oea: vmparam.h

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/powerpc/include/oea/vmparam.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/powerpc/include/oea/vmparam.h
diff -u src/sys/arch/powerpc/include/oea/vmparam.h:1.19 src/sys/arch/powerpc/include/oea/vmparam.h:1.20
--- src/sys/arch/powerpc/include/oea/vmparam.h:1.19	Mon Feb 13 09:46:30 2017
+++ src/sys/arch/powerpc/include/oea/vmparam.h	Thu Aug 17 22:55:47 2017
@@ -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

Reply via email to