diff options
author | Joey Hess <joey@kitenet.net> | 2011-05-15 12:32:18 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-05-15 12:32:18 -0400 |
commit | db540b746b0eb93fa76f8bec0bdb63dd9ea5a5e7 (patch) | |
tree | 20cdff0a2846016cb114dc9d857d659d65272c92 | |
parent | 3e15a8a791d15c166557fa18f240639891a8754f (diff) |
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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ |