This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch tymux
in repository terminology.
View the commit online.
commit 24a44d29154f37bd2e0428c284f6030b35c9275c
Author: [email protected] <[email protected]>
AuthorDate: Wed Sep 9 21:27:12 2026 -0600
fix(tymux): link SIMD sources into tymuxd for termpty_init
master's SIMD UTF-8 widening path added an unconditional simd_init()
call in termpty_init(), but tymuxd_sources never pulled in
simd_sources, so tymuxd failed to link after rebasing tymux onto
master with -Dbenchmarks=true.
---
src/bin/meson.build | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/bin/meson.build b/src/bin/meson.build
index 1225bdd1..624f1414 100644
--- a/src/bin/meson.build
+++ b/src/bin/meson.build
@@ -179,6 +179,7 @@ if host_os == 'linux'
'backlog.c', 'backlog.h',
'sb.c', 'sb.h',
'utf8.c', 'utf8.h',
+ simd_sources,
'colors.c', 'colors.h',
'md5.c', 'md5.h',
'utils.c', 'utils.h',
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.