From: Michael Orlitzky Date: Tue, 23 Aug 2011 03:05:34 +0000 (-0400) Subject: Add "-rtsopts" to my GHC_OPTIONS. X-Git-Tag: 0.0.1~234 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=a680bef0a99be6555dc0ddfed2ee0080cbf6f0b9 Add "-rtsopts" to my GHC_OPTIONS. --- diff --git a/makefile b/makefile index b284d7e..402f956 100644 --- a/makefile +++ b/makefile @@ -11,7 +11,12 @@ GHC_WARNINGS += -fwarn-unused-do-bind BIN := spline3 TMPDIR := /tmp -GHC_OPTS := $(GHC_WARNINGS) -odir $(TMPDIR) -hidir $(TMPDIR) --make -o bin/${BIN} +GHC_OPTS := $(GHC_WARNINGS) \ + -odir $(TMPDIR) \ + -hidir $(TMPDIR) \ + --make \ + -rtsopts \ + -o bin/${BIN} .PHONY : test publish_doc doc src_html hlint