]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/arm-ds5-gator.git/commitdiff
gator-daemon: Fix building on armhf
authorJon Medhurst <tixy@linaro.org>
Fri, 27 Apr 2012 10:28:28 +0000 (11:28 +0100)
committerJon Medhurst <tixy@linaro.org>
Fri, 27 Apr 2012 10:28:28 +0000 (11:28 +0100)
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>
daemon/Makefile

index 4aaf219d7842f0030469535d177bda8cd431dd1b..d73d95bb96d79d5bf8888ed61ac4ef709eb4a842 100644 (file)
@@ -17,7 +17,7 @@ CPP=$(CROSS_COMPILE)g++
 # -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
 CPP_SRC = $(wildcard *.cpp)
 TGT_OBJS = $(CPP_SRC:%.cpp=%.o)