diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2023-11-03 07:50:10 +0000 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2023-11-03 21:16:26 +0000 |
commit | e0b169f1d0061a31fccb6e24253011db40c5fdd7 (patch) | |
tree | 7bb89a033e0d6768d8984d1ec40ec575aaa32833 | |
parent | e28ca0b21024e32c697d2ba6aff1d1eeb187f498 (diff) |
graphics/lux: unbreak on armv7
An upcoming patch will fix the misconfiguration that restricts the
address space for armv7 processes on arm64 to ~2GB instead of the ~3.5GB
it should have been. With that patch applied, the port builds fine.
As a temporary workaround, the following sysctls can be set to effect
the same change (though affecting arm64 processes too):
kern.maxssiz=67108864
kern.maxdsiz=536870912
armv6 stays broken as we cannot run armv6 processes on arm64 (see
PR #256132).
PR: 274705
MFH: 2023Q4
See also: https://reviews.freebsd.org/D42451
-rw-r--r-- | graphics/lux/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/graphics/lux/Makefile b/graphics/lux/Makefile index 29232a6a915e..550cf2bcf052 100644 --- a/graphics/lux/Makefile +++ b/graphics/lux/Makefile @@ -13,7 +13,6 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_armv6= address space exhaustion in compiler -BROKEN_armv7= address space exhaustion in compiler LIB_DEPENDS= libhwy.so:devel/highway \ libsfml-window.so:devel/sfml \ |