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

Side by Side 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.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .travis.yml ('k') | README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 HOST_ARCH :=$(shell python third_party/detect_v8_host_arch.py) 1 HOST_ARCH :=$(shell python third_party/detect_v8_host_arch.py)
2 2
3 ifndef HOST_OS 3 ifndef HOST_OS
4 raw_OS = $(shell uname -s) 4 raw_OS = $(shell uname -s)
5 ifeq (${raw_OS},Linux) 5 ifeq (${raw_OS},Linux)
6 HOST_OS=linux 6 HOST_OS=linux
7 TRAVIS_OS_NAME=linux 7 TRAVIS_OS_NAME=linux
8 CXX=clang++
8 else ifeq (${raw_OS},Darwin) 9 else ifeq (${raw_OS},Darwin)
9 HOST_OS=mac 10 HOST_OS=mac
10 TRAVIS_OS_NAME=osx 11 TRAVIS_OS_NAME=osx
11 endif 12 endif
12 endif 13 endif
13 14
14 TARGET_OS ?= ${HOST_OS} 15 TARGET_OS ?= ${HOST_OS}
15 ABP_TARGET_ARCH ?= ${HOST_ARCH} 16 ABP_TARGET_ARCH ?= ${HOST_ARCH}
16 Configuration ?= debug 17 Configuration ?= debug
17 18
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 NDK_OUT=. \ 98 NDK_OUT=. \
98 ${ANDROID_FIXES} \ 99 ${ANDROID_FIXES} \
99 NDK_APP_DST_DIR=android-$(ABP_TARGET_ARCH).release 100 NDK_APP_DST_DIR=android-$(ABP_TARGET_ARCH).release
100 else 101 else
101 SUB_ACTION ?= all 102 SUB_ACTION ?= all
102 all: ensure_dependencies 103 all: ensure_dependencies
103 GYP_DEFINES="${GYP_PARAMETERS}" third_party/gyp/gyp --depth=. -f make -I libadblockplus.gypi --generator-output=${BUILD_DIR} libadblockplus.gyp 104 GYP_DEFINES="${GYP_PARAMETERS}" third_party/gyp/gyp --depth=. -f make -I libadblockplus.gypi --generator-output=${BUILD_DIR} libadblockplus.gyp
104 $(MAKE) -C ${BUILD_DIR} ${SUB_ACTION} 105 $(MAKE) -C ${BUILD_DIR} ${SUB_ACTION}
105 106
106 endif 107 endif
OLDNEW
« no previous file with comments | « .travis.yml ('k') | README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld