Skip to content

Commit d918023

Browse files
committed
build: use compiled files for all stages
Compiled files load much faster, in the end, generally saving the extra time needed to generate them. This appears to make the last stage in the build about a minute faster.
1 parent 1ec1452 commit d918023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sysimage.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ $$(build_private_libdir)/sysbase$1-o.a $$(build_private_libdir)/sysbase$1-bc.a :
107107
false; \
108108
fi )
109109
@mv $$@.tmp $$@
110-
$$(build_private_libdir)/sys$1-o.a $$(build_private_libdir)/sys$1-bc.a : $$(build_private_libdir)/sys$1-%.a : $$(build_private_libdir)/sysbase$1.ji $$(JULIAHOME)/contrib/generate_precompile.jl
110+
$$(build_private_libdir)/sys$1-o.a $$(build_private_libdir)/sys$1-bc.a : $$(build_private_libdir)/sys$1-%.a : $$(build_private_libdir)/sysbase$1.so $$(JULIAHOME)/contrib/generate_precompile.jl
111111
@$$(call PRINT_JULIA, cd $$(JULIAHOME)/base && \
112112
if ! JULIA_BINDIR=$$(call cygpath_w,$(build_bindir)) \
113113
WINEPATH="$$(call cygpath_w,$$(build_bindir));$$$$WINEPATH" \

0 commit comments

Comments
 (0)