guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 37/41: Disable warnings on bootstrap build


From: Andy Wingo
Subject: [Guile-commits] 37/41: Disable warnings on bootstrap build
Date: Wed, 02 Dec 2015 08:06:59 +0000

wingo pushed a commit to branch master
in repository guile.

commit eb86afcc7aaa8122cc1474c7246186d6bbe3c15c
Author: Andy Wingo <address@hidden>
Date:   Tue Dec 1 10:48:04 2015 +0100

    Disable warnings on bootstrap build
    
    * bootstrap/Makefile.am (GUILE_WARNINGS): Don't enable warnings for the
      bootstrap build, as they probably slow things down.
---
 bootstrap/Makefile.am |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/bootstrap/Makefile.am b/bootstrap/Makefile.am
index 2d9caac..e9b3895 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]