Skip to content

Commit 8105d6f

Browse files
authored
Debugging
1 parent 57079dc commit 8105d6f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

examples/MyApp/src/MyApp.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ using Random
1010
# Issue for 1.6: https://github.com/JuliaLang/PackageCompiler.jl/issues/706
1111
# There's no GitHub Issue for 1.9
1212
@static if (VERSION >= v"1.7.0") || !(VERSION.major == 1 && VERSION.major == 9)
13+
@info "Hit TRUE" VERSION # TODO: delete this line
1314
using LLVMExtra_jll
15+
else # TODO: delete this line
16+
@info "Hit false" VERSION # TODO: delete this line
1417
end
1518

1619
using micromamba_jll
@@ -90,11 +93,14 @@ function real_main()
9093
@everywhere println(Example.domath(3))
9194

9295
@static if (VERSION >= v"1.7.0") || !(VERSION.major == 1 && VERSION.major == 9)
96+
@info "Hit TRUE" VERSION # TODO: delete this line
9397
if isfile(LLVMExtra_jll.libLLVMExtra_path)
9498
println("LLVMExtra path: ok!")
9599
else
96100
println("LLVMExtra path: fail!")
97101
end
102+
else # TODO: delete this line
103+
@info "Hit FALSE" VERSION # TODO: delete this line
98104
end
99105

100106
if isfile(micromamba_jll.micromamba_path)

0 commit comments

Comments
 (0)