aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-01-20 09:10:21 -0800
committerAndreas Gampe <agampe@google.com>2015-01-20 09:10:21 -0800
commit84c129c43662fad07a5f612652cd30ed297a5115 (patch)
tree710564ddc89cbf48504f276b2efece38f678a61d
parente240b95f6f3127af5f23c6be77083255392bdf8a (diff)
downloadfdlibm-84c129c43662fad07a5f612652cd30ed297a5115.tar.gz
Fdlibm: Don't use quotes in Makefile
Using quotes is unnecessary when adding cflags. It also actively hinders filtering. Change-Id: Idbf3f884075d93214f1b595c601fc62b55750fe3
-rw-r--r--Android.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/Android.mk b/Android.mk
index 5cf8648..8720470 100644
--- a/Android.mk
+++ b/Android.mk
@@ -43,20 +43,20 @@ src_files := \
# This is necessary to guarantee that the FDLIBM functions are in
# "IEEE spirit", i.e. to guarantee that the IEEE 754 core functions
# are used.
-cflags := "-D_IEEE_LIBM"
+cflags := -D_IEEE_LIBM
# Android only supports little-endian.
-cflags += "-D__LITTLE_ENDIAN"
+cflags += -D__LITTLE_ENDIAN
# Disable GCC optimizations that interact badly with this crufty
# library (see their own admission in 'readme'). Without this, we
# fail StrictMath tests on x86.
-cflags += "-fno-strict-aliasing"
-cflags += "-ffloat-store"
+cflags += -fno-strict-aliasing
+cflags += -ffloat-store
# c99 specifies a less relaxed floating point model that does not enable
# floating point expession contraction (e.g: fused multiply-add operations).
-cflags += "-std=c99"
+cflags += -std=c99
#
# Build for the target (device).