We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f73dd8 commit 2306b9dCopy full SHA for 2306b9d
.github/workflows/build.yml
@@ -35,7 +35,7 @@ jobs:
35
run: xmake f -cv
36
37
- name: build with xmake
38
- run: xmake build
+ run: xmake build -y
39
40
- name: install to INFINI_ROOT
41
if: matrix.os != 'windows-latest'
xmake/cpu.lua
@@ -1,4 +1,6 @@
1
-add_requires("lapack", {configs = {shared = true}})
+if not is_plat("windows") then
2
+ add_requires("lapack", {configs = {shared = true}})
3
+end
4
target("infiniop-cpu")
5
set_kind("static")
6
add_deps("infini-utils")
0 commit comments