Skip to content

Commit

Permalink
MLIR attempt #2
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Dec 9, 2021
1 parent be1d728 commit b322665
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions L/LLVM/[email protected]/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name = "MLIR"
llvm_full_version = v"12.0.1+4"
libllvm_version = v"12.0.1+4"


# Include common LLVM stuff
include("../common.jl")
build_tarballs(ARGS, configure_extraction(ARGS, llvm_full_version, name, libllvm_version; experimental_platforms=true)...; skip_audit=true, julia_compat="1.7")
1 change: 1 addition & 0 deletions L/LLVM/[email protected]/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name = "MLIR"
llvm_full_version = v"13.0.0+1"
libllvm_version = v"13.0.0+1"


# Include common LLVM stuff
include("../common.jl")
build_tarballs(ARGS, configure_extraction(ARGS, llvm_full_version, name, libllvm_version; experimental_platforms=true)...; skip_audit=true, julia_compat="1.8")
3 changes: 3 additions & 0 deletions L/LLVM/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,9 @@ function configure_extraction(ARGS, LLVM_full_version, name, libLLVM_version=not
LibraryProduct("libMLIR", :libMLIR, dont_dlopen=true),
LibraryProduct("libMLIRPublicAPI", :libMLIRPublicAPI, dont_dlopen=true),
]
if v"12" <= version < v"13"
push!(products, LibraryProduct("libMLIRPublicAPI", :libMLIRPublicAPI, dont_dlopen=true))
end
elseif name == "LLVM"
script = llvmscript
products = [
Expand Down

0 comments on commit b322665

Please sign in to comment.