aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-02-08 08:10:23 +0100
committerMattias Andrée <maandree@operamail.com>2013-02-08 08:10:23 +0100
commitedd3e950fed9d7cc766428e45d52c7a34ce682ca (patch)
tree02095013d9bde2e4b3b01f4f3264c5c9970a1c28 /Makefile
parentcorrected (diff)
downloadsha3sum-edd3e950fed9d7cc766428e45d52c7a34ce682ca.tar.gz
sha3sum-edd3e950fed9d7cc766428e45d52c7a34ce682ca.tar.bz2
sha3sum-edd3e950fed9d7cc766428e45d52c7a34ce682ca.tar.xz
optimise c version
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f3068b0..8a9adc0 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,8 @@ JAVADIRS=-s "pure-java" -d "bin/pure-java" -cp "pure-java"
JAVAFLAGS=-Xlint
JAVA_FLAGS=$(JAVADIRS) $(JAVAFLAGS)
-CFLAGS=-W{all,extra} -pedantic
+# NB! Do not forget to test against -O0, -O4 to -O6 is not safe
+CFLAGS=-W{all,extra} -pedantic -O6
CPPFLAGS=
LDFLAGS=
C_FLAGS=$(CFLAGS) $(CPPFLAGS) $(LDFLAGS)