summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Medhurst <tixy@linaro.org>2012-05-10 17:38:12 +0100
committerJon Medhurst <tixy@linaro.org>2012-05-18 14:24:18 +0100
commit30cd9241c00f1a8d71db3d446cc4527101ace7ec (patch)
treeda429cd9a5f3b82615c18b448cae67d355ea76fe
parentb665aa8925a35e0310a9e9f663ecbe70565a4eeb (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)