aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2024-04-23 10:40:47 +0100
committerChristopher Baines <mail@cbaines.net>2024-04-23 10:40:47 +0100
commit0590b34115a0a181ade33b0fae2e7512b6d7c6e4 (patch)
tree8bf559d4596fcbc089f850c39a374fde8788c9cd
parentb1e273c94b05aeb5cfee1a95055b26d1170ce01e (diff)
downloadbuild-coordinator-0590b34115a0a181ade33b0fae2e7512b6d7c6e4.tar
build-coordinator-0590b34115a0a181ade33b0fae2e7512b6d7c6e4.tar.gz
Use -O1 to avoid Guile bug(s)
As compiling at -O2 with guile-next (3.0.9-0.db7efa5) gives errors like: internal error: unexpected kwarg syms ((#:level level #f)) (t803)
-rw-r--r--guile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/guile.am b/guile.am
index 7f07ca2..bb3ce42 100644
--- a/guile.am
+++ b/guile.am
@@ -19,4 +19,4 @@ EXTRA_DIST = $(SOURCES) $(NOCOMP_SOURCES)
GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat
SUFFIXES = .scm .go
.scm.go:
- $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_TARGET) $(GUILE_WARNINGS) -o "$@" "$<"
+ $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile -O1 $(GUILE_TARGET) $(GUILE_WARNINGS) -o "$@" "$<"