summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2024-01-30 16:43:23 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2024-01-30 16:43:23 +0000
commit8a67dfabaebcd68d06972c00c9e9464f35fae6cb (patch)
tree2fec9efe2c56d1d21a580bc46cbed8b1430b41ab
parentf665adfc9916585085dd8e5e1d35383873e9a773 (diff)
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.
-rw-r--r--sys/arch/macppc/include/vmparam.h4
1 files 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