Fix Windows SDK build to not use clang.

bug 16172793

Change-Id: I7bf76cae49ec17bf50eb657b0e38234b7cb55e85
This commit is contained in:
Tim Murray 2014-07-24 14:42:53 -07:00
parent f82de5b89d
commit 5ca1dc15a1
1 changed files with 5 additions and 3 deletions

View File

@ -133,9 +133,11 @@ endif
# clang is enabled by default for host builds # clang is enabled by default for host builds
# enable it unless we've specifically disabled clang above # enable it unless we've specifically disabled clang above
ifdef LOCAL_IS_HOST_MODULE ifdef LOCAL_IS_HOST_MODULE
ifeq ($(my_clang),) ifneq($(HOST_OS),windows)
my_clang := true ifeq ($(my_clang),)
endif my_clang := true
endif
endif
endif endif
# arch-specific static libraries go first so that generic ones can depend on them # arch-specific static libraries go first so that generic ones can depend on them