Skip to content
This repository has been archived by the owner on Aug 3, 2022. It is now read-only.

Commit

Permalink
Merge "Fix WITH_ARM_V7_A flag not corectly set issue"
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Cheng authored and Gerrit Code Review committed Dec 6, 2013
2 parents 4886329 + 50c8738 commit 940cf75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions opcontrol/Android.mk
Expand Up @@ -18,10 +18,6 @@ include $(LOCAL_PATH)/../common.mk
# Build opcontrol executable on target
include $(CLEAR_VARS)

ifeq ($(ARCH_ARM_HAVE_ARMV7A), true)
LOCAL_CFLAGS += -DWITH_ARM_V7_A
endif

LOCAL_SRC_FILES:= \
opcontrol.cpp

Expand All @@ -35,6 +31,10 @@ LOCAL_STATIC_LIBRARIES := \
LOCAL_C_INCLUDES := $(common_target_c_includes)
LOCAL_CFLAGS := $(common_target_cflags)

ifeq ($(ARCH_ARM_HAVE_ARMV7A), true)
LOCAL_CFLAGS += -DWITH_ARM_V7_A
endif

LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := debug
LOCAL_MODULE:= opcontrol
Expand Down

0 comments on commit 940cf75

Please sign in to comment.