aboutsummaryrefslogtreecommitdiff
path: root/tools/gator/daemon/Makefile
diff options
context:
space:
mode:
authorJon Medhurst <tixy@linaro.org>2014-08-04 15:47:44 +0100
committerJon Medhurst <tixy@linaro.org>2014-08-04 15:47:44 +0100
commite31266f78058409d18d48e0afa8339e77322b17f (patch)
treefbdd0afe24d93c24efd14e14634ea8e8aff39228 /tools/gator/daemon/Makefile
parent15ce78dafc08b1c5c3ec8f42070ae37160b5154c (diff)
gator: Version 5.19
Signed-off-by: Jon Medhurst <tixy@linaro.org>
Diffstat (limited to 'tools/gator/daemon/Makefile')
-rw-r--r--tools/gator/daemon/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/gator/daemon/Makefile b/tools/gator/daemon/Makefile
index 24ee94045470..2ed49fdb688b 100644
--- a/tools/gator/daemon/Makefile
+++ b/tools/gator/daemon/Makefile
@@ -8,14 +8,14 @@
# targets run 'make SOFTFLOAT=1 SYSROOT=/path/to/sysroot', see
# README_Streamline.txt for more details
-CPP = $(CROSS_COMPILE)g++
-GCC = $(CROSS_COMPILE)gcc
+CC = $(CROSS_COMPILE)gcc
+CXX = $(CROSS_COMPILE)g++
# -mthumb-interwork is required for interworking to ARM or Thumb stdlibc
-CFLAGS += -mthumb-interwork
+CPPFLAGS += -mthumb-interwork
ifeq ($(SOFTFLOAT),1)
- CFLAGS += -marm -march=armv4t -mfloat-abi=soft
+ CPPFLAGS += -marm -march=armv4t -mfloat-abi=soft
LDFLAGS += -marm -march=armv4t -mfloat-abi=soft
endif
ifneq ($(SYSROOT),)