aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Medhurst <tixy@linaro.org>2012-05-10 17:38:12 +0100
committerJon Medhurst <tixy@linaro.org>2012-07-16 14:21:40 +0100
commit07857dd142b0d2fc0efda2ba172b4ef190501169 (patch)
treeb033154c6c7a0e93fb8dcb175813917c0427ce91
parent9723e2b0003960906d6458a01d21e8df846ef1e6 (diff)
gator-daemon: Fix building on armhf
Remove compiler options for arm arch and interworking as they break the build and are superfluous now we build for armhf. Signed-off-by: Jon Medhurst <tixy@linaro.org>
-rw-r--r--tools/gator/daemon/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gator/daemon/Makefile b/tools/gator/daemon/Makefile
index aa1c0056a8a..950e87060ac 100644
--- a/tools/gator/daemon/Makefile
+++ b/tools/gator/daemon/Makefile
@@ -18,7 +18,7 @@ GCC=$(CROSS_COMPILE)gcc
# -std=c++98 is the 1998 c++ standard
# -march=armv5t is required to set the minimum architecture
# -mthumb-interwork is required for interworking to ARM or Thumb stdlibc
-CFLAGS=-O3 -Wall -Werror -march=armv5t -mthumb-interwork
+CFLAGS=-O3 -Wall -Werror
TARGET=gatord
C_SRC = $(wildcard mxml/*.c)
CPP_SRC = $(wildcard *.cpp)