Browse Source

openblas: remove {system = true} and force to use `gfortran` if not find `openmp` (#3383)

* remove {system = true}

* update condition

* revert the condition change
_ivaquero_ 1 year ago
parent
commit
4caa4d9cc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/o/openblas/xmake.lua

+ 1 - 1
packages/o/openblas/xmake.lua

@@ -57,7 +57,7 @@ package("openblas")
     end
     on_load("macosx", "linux", "mingw@windows,msys", function (package)
         if package:config("fortran") then
-            package:add("deps", "gfortran", {system = true})
+            package:add("deps", "gfortran")
         end
         if package:config("openmp") then
             package:add("deps", "openmp")