Skip to content

Commit

Permalink
[OpenBLAS] This should do it?
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Sep 3, 2022
1 parent 9d59b51 commit 56940fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion O/OpenBLAS/OpenBLAS32@0.3.21/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sources = openblas_sources(version)
script = openblas_script(openblas32=true)
platforms = openblas_platforms()
products = openblas_products()
dependencies = openblas_dependencies()
dependencies = openblas_dependencies(platforms)

# Build the tarballs
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
Expand Down
5 changes: 2 additions & 3 deletions O/OpenBLAS/OpenBLAS@0.3.21/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ version = v"0.3.20"
sources = openblas_sources(version)
script = openblas_script(;aarch64_ilp64=true, num_64bit_threads=512)
platforms = openblas_platforms(;experimental=true)
products = openblas_products()
dependencies = openblas_dependencies()

push!(platforms, Platform("x86_64", "linux"; sanitize="memory"))
products = openblas_products()
dependencies = openblas_dependencies(platforms)

# Build the tarballs
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
Expand Down
2 changes: 1 addition & 1 deletion O/OpenBLAS/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function openblas_products(;kwargs...)
]
end

function openblas_dependencies(; platforms=openblas_platforms(), kwargs...)
function openblas_dependencies(platforms; kwargs...)
return [
Dependency("CompilerSupportLibraries_jll"),
HostBuildDependency("FlangClassic_jll"),
Expand Down

0 comments on commit 56940fb

Please sign in to comment.