aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-06-18 01:33:23 +0200
committerMattias Andrée <maandree@operamail.com>2014-06-18 01:33:23 +0200
commit3edd15fd79642bf133045b222a0fda78d8f1e73f (patch)
tree43242bce7127b81d9eb5bcd59d9e8d4b3798b7c9
parentcast unused parameter to void (diff)
downloadlibgamma-3edd15fd79642bf133045b222a0fda78d8f1e73f.tar.gz
libgamma-3edd15fd79642bf133045b222a0fda78d8f1e73f.tar.bz2
libgamma-3edd15fd79642bf133045b222a0fda78d8f1e73f.tar.xz
use -O and not -O6 when GCC is not used
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 14bb7ad..8b96ac9 100644
--- a/Makefile
+++ b/Makefile
@@ -92,7 +92,7 @@ else
ifeq ($(CC),gcc)
OPTIMISE = -Ofast
else
-OPTIMISE = -O6
+OPTIMISE = -O
endif
endif