1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Disable warnings on bootstrap build

* bootstrap/Makefile.am (GUILE_WARNINGS): Don't enable warnings for the
  bootstrap build, as they probably slow things down.
This commit is contained in:
Andy Wingo 2015-12-01 10:48:04 +01:00
parent 82085252ec
commit eb86afcc7a

View file

@ -22,7 +22,10 @@
GOBJECTS = $(SOURCES:%.scm=%.go) 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 GUILE_OPTIMIZATIONS = -O1
nobase_noinst_DATA = $(GOBJECTS) ice-9/eval.go nobase_noinst_DATA = $(GOBJECTS) ice-9/eval.go
CLEANFILES = $(GOBJECTS) ice-9/eval.go ice-9/psyntax-pp.go CLEANFILES = $(GOBJECTS) ice-9/eval.go ice-9/psyntax-pp.go