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

* remove {system = true}

* update condition

* revert the condition change
pull/3393/head
_ivaquero_ 9 months ago committed by GitHub
parent 2278b0759e
commit 4caa4d9cc3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      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")

Loading…
Cancel
Save