diff options
| author | Robert Clausecker <fuz@FreeBSD.org> | 2026-01-28 15:18:13 +0000 |
|---|---|---|
| committer | Robert Clausecker <fuz@FreeBSD.org> | 2026-02-04 12:41:14 +0000 |
| commit | 71e8bf055bf2be2092d87e2b9f688699cca89d3e (patch) | |
| tree | da096114e4e8a86a3e8c1cc130fc5e2905b24ab2 | |
| parent | cfc41e9bfe637015f4710e0c745779dee738f478 (diff) | |
x11/wayst: broken on armv7
In file included from src/gfx_gl2.c:3:
src/vt.h:278:1: error: requested alignment is less than minimum alignment of 8 for type 'VtCommand'
278 | DEF_RC_PTR(VtCommand, VtCommand_destroy);
| ^
src/rcptr.h:24:9: note: expanded from macro 'DEF_RC_PTR'
24 | alignas(alignof(void*)) t payload; \
| ^
/usr/include/stdalign.h:34:19: note: expanded from macro 'alignas'
34 | #define alignas _Alignas
| ^
MFH: 2026Q1
See also: https://github.com/91861/wayst/issues/120
Approved by: portmgr (build fix blanket)
| -rw-r--r-- | x11/wayst/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/x11/wayst/Makefile b/x11/wayst/Makefile index fd6f59b42c75..feafdb218a2a 100644 --- a/x11/wayst/Makefile +++ b/x11/wayst/Makefile @@ -6,6 +6,9 @@ MAINTAINER= seafork@disroot.org COMMENT= Simple terminal emulator for Wayland and X11 WWW= https://github.com/91861/wayst +# https://github.com/91861/wayst/issues/120 +BROKEN_armv7= src/vt.h:278:1: error: requested alignment is less than minimum alignment of 8 for type 'VtCommand' + LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE |
