From 1b2187d871adffc572553f3d7174c2b3274498cb Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Mon, 17 Aug 2015 10:36:09 -0700 Subject: [PATCH] Don't filter on a non-existent variable. This used to be used for aarch64 (https://android-review.googlesource.com/#/c/80126/), but has since been removed and now does nothing. This was then reimplemented more generally with my_illegal_flags (https://android-review.googlesource.com/#/c/166405/). Drop *GLOBAL_UNSUPPORTED_CFLAGS in favor of that. Change-Id: I3347726dd92f9d3a16783e0d9d3b685a828400b4 --- core/binary.mk | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/binary.mk b/core/binary.mk index 35ecaa366..3a167f034 100644 --- a/core/binary.mk +++ b/core/binary.mk @@ -206,8 +206,6 @@ endif my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries) my_whole_static_libraries := $(LOCAL_WHOLE_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_WHOLE_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_whole_static_libraries) -my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags)) - include $(BUILD_SYSTEM)/cxx_stl_setup.mk # Add static HAL libraries -- 2.11.0