The branch stable/13 has been updated by novel: URL: https://cgit.FreeBSD.org/src/commit/?id=bffa54b58cbfc41e0502b97065726dc3fbaea6c7
commit bffa54b58cbfc41e0502b97065726dc3fbaea6c7 Author: Roman Bogorodskiy <[email protected]> AuthorDate: 2026-01-26 18:24:15 +0000 Commit: Roman Bogorodskiy <[email protected]> CommitDate: 2026-01-31 15:43:55 +0000 bhyve: make BHYVE_SNAPSHOT amd64-only Build fails with BHYVE_SNAPSHOT enabled on non-amd64, so add it to BROKEN_OPTIONS for these arches. PR: 292686 Reviewed by: emaste, markj MFC after: 3 days Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D54873 (cherry picked from commit b01763b2b2ab2d87f7d3c6ae57783c731ce548dd) --- share/mk/src.opts.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index 6a4b03b1a8bc..4257f93908ca 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -371,6 +371,10 @@ __DEFAULT_YES_OPTIONS+=OPENMP __DEFAULT_NO_OPTIONS+=OPENMP .endif +.if ${__T} != "amd64" +BROKEN_OPTIONS+=BHYVE_SNAPSHOT +.endif + .include <bsd.mkopt.mk> #
