aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-01-20 17:55:19 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-01-20 17:55:20 +0000
commitce012d6cc2e63f250cc1680dc9beec62e0140e73 (patch)
tree710564ddc89cbf48504f276b2efece38f678a61d
parente240b95f6f3127af5f23c6be77083255392bdf8a (diff)
parent84c129c43662fad07a5f612652cd30ed297a5115 (diff)
downloadfdlibm-ce012d6cc2e63f250cc1680dc9beec62e0140e73.tar.gz
Merge "Fdlibm: Don't use quotes in Makefile"
-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).