File tree 3 files changed +9
-8
lines changed
3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
name = " PrecompileTools"
2
2
uuid = " aea7be01-6a6a-4083-8856-8a6e6704d82a"
3
3
authors = [
" Tim Holy <[email protected] >" ,
" t-bltg <[email protected] >" ,
" and contributors" ]
4
- version = " 1.1.1 "
4
+ version = " 1.1.2 "
5
5
6
6
[deps ]
7
7
Preferences = " 21216c6a-2e73-6563-6e65-726566657250"
Original file line number Diff line number Diff line change @@ -71,14 +71,14 @@ macro compile_workload(ex::Expr)
71
71
ex = quote
72
72
begin
73
73
Base. Experimental. @force_compile
74
- $ ex
74
+ $ ( esc (ex))
75
75
end
76
76
end
77
77
else
78
78
# Use the hack on earlier Julia versions that blocks the interpreter
79
79
ex = quote
80
80
while false end
81
- $ ex
81
+ $ ( esc (ex))
82
82
end
83
83
end
84
84
if have_inference_tracking
@@ -94,11 +94,11 @@ macro compile_workload(ex::Expr)
94
94
$ PrecompileTools. precompile_roots (Core. Compiler. Timings. _timings[1 ]. children)
95
95
end
96
96
end
97
- return esc ( quote
97
+ return quote
98
98
if $ iscompiling || $ PrecompileTools. verbose[]
99
99
$ ex
100
100
end
101
- end )
101
+ end
102
102
end
103
103
104
104
"""
@@ -131,9 +131,9 @@ macro setup_workload(ex::Expr)
131
131
end
132
132
# Ideally we'd like a `let` around this to prevent namespace pollution, but that seem to
133
133
# trigger inference & codegen in undesirable ways (see #16).
134
- return esc ( quote
134
+ return quote
135
135
if $ iscompiling || $ PrecompileTools. verbose[]
136
- $ ex
136
+ $ ( esc (ex))
137
137
end
138
- end )
138
+ end
139
139
end
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ using UUIDs
65
65
66
66
projfile = Base. active_project ()
67
67
Pkg. activate (" PC_D" )
68
+ Pkg. instantiate ()
68
69
using PC_D
69
70
70
71
PrecompileTools. Preferences. set_preferences! (PC_D, " precompile_workload" => false )
You can’t perform that action at this time.
0 commit comments