Home | History | Annotate | Download | only in core

Lines Matching refs:CLANG

0 CLANG := $(HOST_OUT_EXECUTABLES)/clang$(HOST_EXECUTABLE_SUFFIX)
2 CLANG_CXX := $(HOST_OUT_EXECUTABLES)/clang++$(HOST_EXECUTABLE_SUFFIX)
6 define do-clang-flags-subst
11 define clang-flags-subst
12 $(eval $(call do-clang-flags-subst,$(1),$(2)))
87 CLANG_CONFIG_EXTRA_TARGET_C_INCLUDES := external/clang/lib/include $(TARGET_OUT_HEADERS)/clang
97 $(call clang-flags-subst,-march=armv5te,-march=armv5t)
98 $(call clang-flags-subst,-march=armv5e,-march=armv5)
100 # clang does not support -Wno-psabi and -Wno-unused-but-set-variable
101 $(call clang-flags-subst,-Wno-psabi,)
102 $(call clang-flags-subst,-Wno-unused-but-set-variable,)
104 # clang does not support -mcpu=cortex-a15 yet - fall back to armv7-a for now
105 $(call clang-flags-subst,-mcpu=cortex-a15,-march=armv7-a)
113 # provides to Clang (for supporting features like -ftrapv).