From 7a06393f1777fd662a871d75007b1ddc5d3d334f Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Fri, 13 Dec 2024 11:06:17 +0100 Subject: [PATCH] juliac: add the --experimental flag --- juliac/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juliac/Makefile b/juliac/Makefile index 9d3266e..47d609e 100644 --- a/juliac/Makefile +++ b/juliac/Makefile @@ -4,7 +4,7 @@ JULIAC ?= $(shell $(JULIA) -e 'print(normpath(joinpath(Sys.BINDIR, Base.DATAROOT RUNIC_FILES := $(wildcard ../src/*.jl) ../Project.toml runicc: runicc.jl Project.toml Manifest.toml $(RUNIC_FILES) check-julia - $(JULIA) --project=. $(JULIAC) --output-exe $@ --trim=unsafe $< + $(JULIA) --project=. $(JULIAC) --verbose --output-exe $@ --experimental --trim=unsafe $< Manifest.toml: Project.toml ../Project.toml $(JULIA) --project=. -e 'using Pkg; Pkg.instantiate()'