From 09d0ee5a2af54669ec9fb3686c930932e3b1f3c7 Mon Sep 17 00:00:00 2001 From: xq114 <1140735506@qq.com> Date: Sun, 3 Mar 2024 11:58:55 +0800 Subject: [PATCH] disable x86 --- packages/g/ginkgo/xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/g/ginkgo/xmake.lua b/packages/g/ginkgo/xmake.lua index c5bb8f97a6e..776fbb49bc0 100644 --- a/packages/g/ginkgo/xmake.lua +++ b/packages/g/ginkgo/xmake.lua @@ -24,7 +24,7 @@ package("ginkgo") -- TODO: add hip and sycl end) - on_install("windows", "macosx", "linux", function (package) + on_install("windows|!x86", "macosx", "linux", function (package) local configs = {"-DGINKGO_BUILD_TESTS=OFF", "-DGINKGO_BUILD_EXAMPLES=OFF", "-DGINKGO_BUILD_BENCHMARKS=OFF", "-DGINKGO_BUILD_REFERENCE=ON", "-DGINKGO_BUILD_MPI=OFF"} table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))