1#
2# Clang config
3#
4
5# Environment Checks ##########################################################
6ifeq ($(ANDROID_BUILD_TOP),)
7$(error "You should supply an ANDROID_BUILD_TOP environment variable \
8         containing a path to the Android source tree. This is typically \
9         provided by initializing the Android build environment.")
10endif
11
12# Clang toolchain path ########################################################
13CLANG_TOOLCHAIN_PATH=$(ANDROID_BUILD_TOP)/prebuilts/clang/host/linux-x86/clang-r498229b
14IS_CLANG_TOOLCHAIN=true
15