Index: Makefile |
=================================================================== |
--- a/Makefile |
+++ b/Makefile |
@@ -1,15 +1,16 @@ |
HOST_ARCH :=$(shell python third_party/detect_v8_host_arch.py) |
ifndef HOST_OS |
raw_OS = $(shell uname -s) |
ifeq (${raw_OS},Linux) |
HOST_OS=linux |
TRAVIS_OS_NAME=linux |
+ CXX=clang++ |
else ifeq (${raw_OS},Darwin) |
HOST_OS=mac |
TRAVIS_OS_NAME=osx |
endif |
endif |
TARGET_OS ?= ${HOST_OS} |
ABP_TARGET_ARCH ?= ${HOST_ARCH} |