Date: Thu, 18 Dec 2025 21:56:17 +0000 From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 7f3da1f800f7 - main - aq(4): Build on x86 only for now Message-ID: <69447881.442f4.17ec6ae5@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=7f3da1f800f77150fab2a07ce9cafdca41b29ee9 commit 7f3da1f800f77150fab2a07ce9cafdca41b29ee9 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2025-12-18 21:54:38 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2025-12-18 21:55:46 +0000 aq(4): Build on x86 only for now It fails to build on arm64. As it is experimental and in development just limit it to x86 until this is fixed. Reported by: brd Fixes: 75177aebf039 ("aq(4): Add build infrastructure") --- sys/modules/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 731a959976c3..bf3588926acf 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -44,8 +44,8 @@ SUBDIR= \ ${_armv8crypto} \ ${_armv8_rng} \ ${_asmc} \ - aq \ ata \ + ${_aq} \ ath \ ath_dfs \ ath_hal \ @@ -735,6 +735,7 @@ _imx= imx .endif .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" +_aq= aq _agp= agp .if ${MACHINE_CPUARCH} == "i386" || !empty(COMPAT_FREEBSD32_ENABLED) _aout= aouthelp
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69447881.442f4.17ec6ae5>
