d1baa0f001
This was marked as unsupported only on arm[64], even though it works. For soong, we want to keep a single list of unsupported clang flags for all architectures. Change-Id: I9c4ae0f255c549d2346ba7abae57e22c86ddcc61
21 lines
499 B
Makefile
21 lines
499 B
Makefile
# Clang flags for arm64 arch, target or host.
|
|
|
|
CLANG_CONFIG_arm64_EXTRA_ASFLAGS :=
|
|
|
|
CLANG_CONFIG_arm64_EXTRA_CFLAGS :=
|
|
|
|
CLANG_CONFIG_arm64_EXTRA_LDFLAGS :=
|
|
|
|
# Include common unknown flags
|
|
CLANG_CONFIG_arm64_UNKNOWN_CFLAGS := \
|
|
$(CLANG_CONFIG_UNKNOWN_CFLAGS) \
|
|
-fgcse-after-reload \
|
|
-frerun-cse-after-loop \
|
|
-frename-registers \
|
|
-fno-strict-volatile-bitfields \
|
|
-fno-align-jumps
|
|
|
|
# We don't have any arm64 flags to substitute yet.
|
|
define subst-clang-incompatible-arm64-flags
|
|
$(1)
|
|
endef
|