Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(572)

Side by Side Diff: asan/asan_clang_Darwin/bin/clang++_fasan

Issue 9034019: Roll the new ASan binaries for Mac OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « asan/asan_clang_Darwin/bin/clang++ ('k') | asan/asan_clang_Darwin/bin/clang_fasan » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # We need this wrapper because xcodebuild doesn't allow to pass arguments to the compiler via env. 2 # We need this wrapper because xcodebuild doesn't allow to pass arguments to the compiler via env.
3 3
4 DIRNAME=`dirname $0` 4 DIRNAME=`dirname $0`
5 # AddressSanitizer doesn't like the -O3 flag, so we force -O2. 5 $DIRNAME/clang++ "$@" -mllvm -asan-blacklist=$DIRNAME/../../ignore.txt
6 $DIRNAME/clang++ -fasan "$@" -mllvm -asan-blacklist=$DIRNAME/../../ignore.txt -O 2
OLDNEW
« no previous file with comments | « asan/asan_clang_Darwin/bin/clang++ ('k') | asan/asan_clang_Darwin/bin/clang_fasan » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698