We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebb44ee commit 315211aCopy full SHA for 315211a
deps/build_local.jl
@@ -33,12 +33,13 @@ llvm_assertions = try
33
catch
34
true
35
end
36
+llvm_pkg_version = "$(Base.libllvm_version.major).$(Base.libllvm_version.minor)"
37
LLVM = if llvm_assertions
- Pkg.add(name="LLVM_full_assert_jll", version=Base.libllvm_version)
38
+ Pkg.add(name="LLVM_full_assert_jll", version=llvm_pkg_version)
39
using LLVM_full_assert_jll
40
LLVM_full_assert_jll
41
else
- Pkg.add(name="LLVM_full_jll", version=Base.libllvm_version)
42
+ Pkg.add(name="LLVM_full_jll", version=llvm_pkg_version)
43
using LLVM_full_jll
44
LLVM_full_jll
45
0 commit comments