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

Side by Side Diff: Makefile

Issue 29823575: Noissue - fix the switching to clang++/libc++ (Closed) Base URL: https://github.com/adblockplus/libadblockplus@ca063256d589c9e950a5b14a16bc266e3b5072e8
Patch Set: Created July 5, 2018, 10:10 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 | « no previous file | no next file » | 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 CXX=clang++
9 else ifeq (${raw_OS},Darwin) 9 else ifeq (${raw_OS},Darwin)
10 HOST_OS=mac 10 HOST_OS=mac
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 APP_PLATFORM=${ANDROID_PLATFORM_LEVEL} \ 93 APP_PLATFORM=${ANDROID_PLATFORM_LEVEL} \
94 APP_PIE=true \ 94 APP_PIE=true \
95 APP_STL=c++_shared \ 95 APP_STL=c++_shared \
96 APP_BUILD_SCRIPT=Makefile \ 96 APP_BUILD_SCRIPT=Makefile \
97 NDK_PROJECT_PATH=. \ 97 NDK_PROJECT_PATH=. \
98 NDK_OUT=. \ 98 NDK_OUT=. \
99 ${ANDROID_FIXES} \ 99 ${ANDROID_FIXES} \
100 NDK_APP_DST_DIR=android-$(ABP_TARGET_ARCH).release 100 NDK_APP_DST_DIR=android-$(ABP_TARGET_ARCH).release
101 else 101 else
102 SUB_ACTION ?= all 102 SUB_ACTION ?= all
103 ifdef CXX
104 CXX_PARAM:=CXX=${CXX}
105 endif
103 all: ensure_dependencies 106 all: ensure_dependencies
104 GYP_DEFINES="${GYP_PARAMETERS}" third_party/gyp/gyp --depth=. -f make -I libadblockplus.gypi --generator-output=${BUILD_DIR} libadblockplus.gyp 107 GYP_DEFINES="${GYP_PARAMETERS}" third_party/gyp/gyp --depth=. -f make -I libadblockplus.gypi --generator-output=${BUILD_DIR} libadblockplus.gyp
105 » $(MAKE) -C ${BUILD_DIR} ${SUB_ACTION} 108 » $(MAKE) -C ${BUILD_DIR} ${SUB_ACTION} ${CXX_PARAM}
sergei 2018/07/05 10:29:34 It's not enough to define a local variable CXX, we
106 109
107 endif 110 endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld