Skip to content

Commit bfbfdba

Browse files
authored
LLVMExtra_jll gives problems on Julia 1.9
1 parent ddabb98 commit bfbfdba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

examples/MyApp/src/MyApp.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ using HelloWorldC_jll
55
using Artifacts
66
using Distributed
77
using Random
8-
if VERSION >= v"1.7.0"
8+
9+
# We seem to get problems with LLVMExtra_jll on Julia 1.6 and 1.9
10+
# Issue for 1.6: https://github.com/JuliaLang/PackageCompiler.jl/issues/706
11+
# There's no GitHub Issue for 1.9
12+
@static if (VERSION >= v"1.7.0") && !(VERSION.major == 1 && VERSION.major == 9)
913
using LLVMExtra_jll
1014
end
1115

0 commit comments

Comments
 (0)