Revision: 20402
Author: [email protected]
Date: Tue Apr 1 12:53:07 2014 UTC
Log: Fix "make arm asan=$CLANG"
Bonus cleanup: remove a few duplicate compiler flags
[email protected]
Review URL: https://codereview.chromium.org/220883003
http://code.google.com/p/v8/source/detail?r=20402
Modified:
/branches/bleeding_edge/Makefile
/branches/bleeding_edge/build/toolchain.gypi
=======================================
--- /branches/bleeding_edge/Makefile Wed Mar 26 10:01:53 2014 UTC
+++ /branches/bleeding_edge/Makefile Tue Apr 1 12:53:07 2014 UTC
@@ -140,9 +140,9 @@
# asan=/path/to/clang++
ifneq ($(strip $(asan)),)
GYPFLAGS += -Dasan=1
- export CXX="$(asan)"
- export CXX_host="$(asan)"
- export LINK="$(asan)"
+ export CXX=$(asan)
+ export CXX_host=$(asan)
+ export LINK=$(asan)
export ASAN_SYMBOLIZER_PATH="$(dir $(asan))llvm-symbolizer"
endif
=======================================
--- /branches/bleeding_edge/build/toolchain.gypi Wed Mar 26 18:23:34 2014
UTC
+++ /branches/bleeding_edge/build/toolchain.gypi Tue Apr 1 12:53:07 2014
UTC
@@ -521,10 +521,7 @@
'conditions': [
['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"
or \
OS=="qnx"', {
- 'cflags':
[ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter',
- '-Wnon-virtual-dtor', '-Woverloaded-virtual',
- '<(wno_array_bounds)',
- ],
+ 'cflags': [ '-Woverloaded-virtual', '<(wno_array_bounds)', ],
'conditions': [
['v8_optimized_debug==0', {
'cflags!': [
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.