Skip to content

Commit b5584bd

Browse files
authored
Merge pull request #16 from KristofferC/kc/no_infer_jllwrappers
run JLLWrappers without inference
2 parents bc3b6af + 0b78203 commit b5584bd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/JLLWrappers.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
module JLLWrappers
22

3+
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
4+
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
5+
end
6+
37
# We need to glue expressions together a lot
48
function excat(exs::Union{Expr,Nothing}...)
59
ex = Expr(:block)

0 commit comments

Comments
 (0)