02268f01df
Soong is using a single list of unknown clang flags for all architectures, instead of the per-architecture list here. Collapse this down to a single list as well so that it can be verified against the Soong list, and eventually replaced by the Soong version. Change-Id: If43cd892105da5155907c05965a74b835920a369
15 lines
480 B
Makefile
15 lines
480 B
Makefile
# Clang flags for arm arch, target or host.
|
|
|
|
CLANG_CONFIG_arm_EXTRA_ASFLAGS :=
|
|
|
|
CLANG_CONFIG_arm_EXTRA_CFLAGS :=
|
|
|
|
CLANG_CONFIG_arm_EXTRA_CPPFLAGS :=
|
|
|
|
CLANG_CONFIG_arm_EXTRA_LDFLAGS :=
|
|
|
|
ifneq (,$(filter krait,$(TARGET_$(combo_2nd_arch_prefix)CPU_VARIANT)))
|
|
# Android's clang support's krait as a CPU whereas GCC doesn't. Specify
|
|
# -mcpu here rather than the more normal core/combo/arch/arm/armv7-a-neon.mk.
|
|
CLANG_CONFIG_arm_EXTRA_CFLAGS += -mcpu=krait -mfpu=neon-vfpv4
|
|
endif
|