Skip to content

Commit

Permalink
Build MKL with new branch of BB (not yet functional with latest stabl…
Browse files Browse the repository at this point in the history
…e tag of BB)
  • Loading branch information
staticfloat committed Jun 6, 2019
1 parent 6f4022e commit e4d711d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions MKL/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using BinaryBuilder
using BinaryBuilder, Pkg

name = "MKL"
version = v"2019.0.117"

target = triplet(platform_key(ARGS[end]))
target = triplet(platform_key_abi(ARGS[end]))
if target == "unknown-unknown-unknown"
error("This is not a typical build_tarballs.jl! Must provide exactly one platform as the last argument!")
end
Expand Down Expand Up @@ -53,14 +53,14 @@ mv info/*.txt ${prefix}/share/
platforms = [platform_key_abi(target)]

# The products that we will ensure are always built
products(prefix) = [
LibraryProduct(prefix, ["libmkl_core", "mkl_core"], :libmkl_core),
LibraryProduct(prefix, ["libmkl_rt", "mkl_rt"], :libmkl_rt),
products = [
LibraryProduct(["libmkl_core", "mkl_core"], :libmkl_core),
LibraryProduct(["libmkl_rt", "mkl_rt"], :libmkl_rt),
]

# Dependencies that must be installed before this package can be built
dependencies = [
]

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; skip_audit=true)
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies)

0 comments on commit e4d711d

Please sign in to comment.