the clang binary never shrinks, especially since it is statically
authorderaadt <deraadt@openbsd.org>
Tue, 30 Jan 2024 16:43:22 +0000 (16:43 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 30 Jan 2024 16:43:22 +0000 (16:43 +0000)
linked (for performance).  in this case, it grew larger than the
maximum text segment size; increase that size.

sys/arch/macppc/include/vmparam.h

index 740ae2e..9c1c584 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vmparam.h,v 1.32 2021/03/15 15:49:20 deraadt Exp $    */
+/*     $OpenBSD: vmparam.h,v 1.33 2024/01/30 16:43:22 deraadt Exp $    */
 /*     $NetBSD: vmparam.h,v 1.1 1996/09/30 16:34:38 ws Exp $   */
 
 /*-
@@ -38,7 +38,7 @@
 #define        USRSTACK        VM_MAXUSER_ADDRESS
 
 #ifndef        MAXTSIZ
-#define        MAXTSIZ         (64*1024*1024)          /* max text size */
+#define        MAXTSIZ         (128*1024*1024)         /* max text size */
 #endif
 
 #ifndef        DFLDSIZ