From ed3b913002ba9c09d713298bdad8f74e07d64650 Mon Sep 17 00:00:00 2001 From: deraadt Date: Tue, 30 Jan 2024 16:43:22 +0000 Subject: [PATCH] the clang binary never shrinks, especially since it is statically linked (for performance). in this case, it grew larger than the maximum text segment size; increase that size. --- sys/arch/macppc/include/vmparam.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/macppc/include/vmparam.h b/sys/arch/macppc/include/vmparam.h index 740ae2ef071..9c1c584f41c 100644 --- a/sys/arch/macppc/include/vmparam.h +++ b/sys/arch/macppc/include/vmparam.h @@ -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 -- 2.20.1