aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Medhurst <tixy@linaro.org>2012-05-10 17:38:12 +0100
committerJon Medhurst <tixy@linaro.org>2012-05-16 14:23:12 +0100
commit5b8e3693b52825342047dfd4c37c45ee26bfafba (patch)
treefd1287b92eb3e1ea6ec9f90ea77abf56795c96bb
parent06022bf66d1418867d6987224c05bd3a36702a99 (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)