039675adb8
Bug: 17333374 Add RS_TRIPLE_CFLAGS to ensure that we build with the proper defines on targets like x86. This also changes all build targets to use the proper 32/64-bit triples when creating their runtime libraries. Change-Id: I8f6175b1a14af6d03ee90f32069f3688ec227fb9
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
|
|
include $(BUILD_SYSTEM)/clang/arm64.mk
|
|
|
|
CLANG_CONFIG_arm64_TARGET_TRIPLE := aarch64-linux-android
|
|
CLANG_CONFIG_arm64_TARGET_TOOLCHAIN_PREFIX := \
|
|
$(TARGET_TOOLCHAIN_ROOT)/$(CLANG_CONFIG_arm64_TARGET_TRIPLE)/bin
|
|
|
|
CLANG_CONFIG_arm64_TARGET_EXTRA_ASFLAGS := \
|
|
$(CLANG_CONFIG_EXTRA_ASFLAGS) \
|
|
$(CLANG_CONFIG_TARGET_EXTRA_ASFLAGS) \
|
|
$(CLANG_CONFIG_arm64_EXTRA_ASFLAGS) \
|
|
-target $(CLANG_CONFIG_arm64_TARGET_TRIPLE) \
|
|
-B$(CLANG_CONFIG_arm64_TARGET_TOOLCHAIN_PREFIX)
|
|
|
|
CLANG_CONFIG_arm64_TARGET_EXTRA_CFLAGS := \
|
|
$(CLANG_CONFIG_EXTRA_CFLAGS) \
|
|
$(CLANG_CONFIG_TARGET_EXTRA_CFLAGS) \
|
|
$(CLANG_CONFIG_arm64_EXTRA_CFLAGS) \
|
|
$(CLANG_CONFIG_arm64_TARGET_EXTRA_ASFLAGS)
|
|
|
|
CLANG_CONFIG_arm64_TARGET_EXTRA_CPPFLAGS := \
|
|
$(CLANG_CONFIG_EXTRA_CPPFLAGS) \
|
|
$(CLANG_CONFIG_TARGET_EXTRA_CPPFLAGS) \
|
|
$(CLANG_CONFIG_arm64_EXTRA_CPPFLAGS) \
|
|
|
|
CLANG_CONFIG_arm64_TARGET_EXTRA_LDFLAGS := \
|
|
$(CLANG_CONFIG_EXTRA_LDFLAGS) \
|
|
$(CLANG_CONFIG_TARGET_EXTRA_LDFLAGS) \
|
|
$(CLANG_CONFIG_arm64_EXTRA_LDFLAGS) \
|
|
-target $(CLANG_CONFIG_arm64_TARGET_TRIPLE) \
|
|
-B$(CLANG_CONFIG_arm64_TARGET_TOOLCHAIN_PREFIX)
|
|
|
|
|
|
define convert-to-clang-flags
|
|
$(strip \
|
|
$(call subst-clang-incompatible-arm64-flags,\
|
|
$(filter-out $(CLANG_CONFIG_arm64_UNKNOWN_CFLAGS),\
|
|
$(1))))
|
|
endef
|
|
|
|
CLANG_TARGET_GLOBAL_CFLAGS := \
|
|
$(call convert-to-clang-flags,$(TARGET_GLOBAL_CFLAGS)) \
|
|
$(CLANG_CONFIG_arm64_TARGET_EXTRA_CFLAGS)
|
|
|
|
CLANG_TARGET_GLOBAL_CPPFLAGS := \
|
|
$(call convert-to-clang-flags,$(TARGET_GLOBAL_CPPFLAGS)) \
|
|
$(CLANG_CONFIG_arm64_TARGET_EXTRA_CPPFLAGS)
|
|
|
|
CLANG_TARGET_GLOBAL_LDFLAGS := \
|
|
$(call convert-to-clang-flags,$(TARGET_GLOBAL_LDFLAGS)) \
|
|
$(CLANG_CONFIG_arm64_TARGET_EXTRA_LDFLAGS)
|
|
|
|
RS_TRIPLE := aarch64-linux-android
|
|
RS_TRIPLE_CFLAGS :=
|