From 21de2feac178b8ac934f69d872e3401028e51a35 Mon Sep 17 00:00:00 2001 From: ruki Date: Tue, 14 Jun 2022 18:29:41 +0800 Subject: [PATCH] update boost (#1263) --- packages/b/boost/xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/b/boost/xmake.lua b/packages/b/boost/xmake.lua index 952829982..9ae2b3648 100644 --- a/packages/b/boost/xmake.lua +++ b/packages/b/boost/xmake.lua @@ -143,7 +143,7 @@ package("boost") "debug-symbols=" .. (package:debug() and "on" or "off"), "link=" .. (package:config("shared") and "shared" or "static") } - if package:is_arch("x64", "x86_64") then + if package:is_arch(".+64") then table.insert(argv, "address-model=64") else table.insert(argv, "address-model=32")