diff options
author | Andy Wingo <wingo@pobox.com> | 2015-12-01 10:48:04 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2015-12-02 08:45:30 +0100 |
commit | eb86afcc7aaa8122cc1474c7246186d6bbe3c15c (patch) | |
tree | 372336755f626d4c2001123ae730f0c1b684885c /bootstrap | |
parent | 82085252ec278e3c12271a038e7ae96ae23e3673 (diff) |
Disable warnings on bootstrap build
* bootstrap/Makefile.am (GUILE_WARNINGS): Don't enable warnings for the
bootstrap build, as they probably slow things down.
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap/Makefile.am b/bootstrap/Makefile.am index 2d9caac38..e9b3895bf 100644 --- a/bootstrap/Makefile.am +++ b/bootstrap/Makefile.am @@ -22,7 +22,10 @@ GOBJECTS = $(SOURCES:%.scm=%.go) -GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat +# No warnings for the bootstrap build. Run +# make GUILE_WARNINGS="-Wunbound-variable -Warity-mismatch -Wformat" +# to get the normal set of warnings. +GUILE_WARNINGS = GUILE_OPTIMIZATIONS = -O1 nobase_noinst_DATA = $(GOBJECTS) ice-9/eval.go CLEANFILES = $(GOBJECTS) ice-9/eval.go ice-9/psyntax-pp.go |