1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

Switch to baseline compiler for bootstrap/

* bootstrap/Makefile.am (GUILE_OPTIMIZATIONS): Add -Ono-cps so that we
  use the baseline compiler when bootstrapping.
This commit is contained in:
Andy Wingo 2020-05-11 15:22:29 +02:00
parent 2ba3eb4cf2
commit a68c80c747

View file

@ -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