Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: Makefile

Issue 29817566: Noissue - Use clang++ and libc++ on Linux (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Fix Travis dependencies. Created July 4, 2018, 7:48 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .travis.yml ('k') | README.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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}
« no previous file with comments | « .travis.yml ('k') | README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld