Skip to content

Commit

Permalink
MLIR attempt #2 (#4048)
Browse files Browse the repository at this point in the history
[skip build]
  • Loading branch information
vchuravy committed Dec 9, 2021
1 parent be1d728 commit 7ee13ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
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")
4 changes: 3 additions & 1 deletion L/LLVM/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,10 @@ function configure_extraction(ARGS, LLVM_full_version, name, libLLVM_version=not
script = mlirscript
products = [
LibraryProduct("libMLIR", :libMLIR, dont_dlopen=true),
LibraryProduct("libMLIRPublicAPI", :libMLIRPublicAPI, dont_dlopen=true),
]
if v"12" == version
push!(products, LibraryProduct("libMLIRPublicAPI", :libMLIRPublicAPI, dont_dlopen=true))
end
elseif name == "LLVM"
script = llvmscript
products = [
Expand Down

0 comments on commit 7ee13ae

Please sign in to comment.