From db540b746b0eb93fa76f8bec0bdb63dd9ea5a5e7 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 15 May 2011 12:32:18 -0400 Subject: [PATCH] don't optimise test suite This avoids needing to adjust -fspec-constr-count, which continues to need high values (> 8 now) when building the test suite. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 01a1a6a54c..286c3a6e54 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ install: all fi test: $(bins) - if ! $(GHCMAKE) test; then \ + if ! $(GHCMAKE) -O0 test; then \ echo "** not running test suite" >&2; \ else \ ./test; \