diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-01-30 16:43:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-01-30 16:43:23 +0000 |
commit | 8a67dfabaebcd68d06972c00c9e9464f35fae6cb (patch) | |
tree | 2fec9efe2c56d1d21a580bc46cbed8b1430b41ab | |
parent | f665adfc9916585085dd8e5e1d35383873e9a773 (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.h | 4 |
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 |