From a68c80c747a2a8ec92fa84684ebd60b4ecb7ffa0 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 11 May 2020 15:22:29 +0200 Subject: [PATCH] Switch to baseline compiler for bootstrap/ * bootstrap/Makefile.am (GUILE_OPTIMIZATIONS): Add -Ono-cps so that we use the baseline compiler when bootstrapping. --- bootstrap/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/Makefile.am b/bootstrap/Makefile.am index 2753b6950..6010f8411 100644 --- a/bootstrap/Makefile.am +++ b/bootstrap/Makefile.am @@ -27,7 +27,7 @@ GUILE_WARNINGS = -W0 # attempts to resolve primitives at boot fail; weird. Should fix this # but in the meantime we turn on primitive resolution (which normally # only happens at -O2). -GUILE_OPTIMIZATIONS = -O1 -Oresolve-primitives +GUILE_OPTIMIZATIONS = -O1 -Oresolve-primitives -Ono-cps include $(top_srcdir)/am/bootstrap.am