summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2024-02-01 00:39:58 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2024-02-01 00:39:58 +0000
commite69f40a666113b2a8a07e4c6a998be215b2a8087 (patch)
treec887861fffb44764d21e97e651c0b22dd58010c7 /sys
parent61e89db0c9788ff300f1b7837f5222f99fd5ff06 (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.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/arm/include/vmparam.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/arm/include/vmparam.h b/sys/arch/arm/include/vmparam.h
index 5f086f89c53..f3867dad34a 100644
--- a/sys/arch/arm/include/vmparam.h
+++ b/sys/arch/arm/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.19 2018/03/05 01:39:13 deraadt Exp $ */
+/* $OpenBSD: vmparam.h,v 1.20 2024/02/01 00:39:57 deraadt Exp $ */
/* $NetBSD: vmparam.h,v 1.18 2003/05/21 18:04:44 thorpej Exp $ */
/*
@@ -46,7 +46,8 @@
#define USRSTACK VM_MAXUSER_ADDRESS
#define KERNBASE VM_MAXUSER_ADDRESS
-#define MAXTSIZ (64*1024*1024) /* max text size */
+#define MAXTSIZ (128*1024*1024) /* max text size */
+
#ifndef DFLDSIZ
#define DFLDSIZ (128*1024*1024) /* initial data size limit */
#endif