OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
2 # | |
3 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
4 # Use of this source code is governed by a BSD-style license that can be | |
5 # found in the LICENSE file. | |
6 # | |
7 # A script that runs a clang plugin against the chrome target on Linux. | |
8 | |
9 export CXXFLAGS="-Xclang -load -Xclang /work/llvm/Release+Asserts/lib/libFindBa dConstructs.so -Xclang -plugin -Xclang find-bad-constructs" | |
10 export CXX=`dirname $0`/cxx_wrapper.sh | |
11 export LINK=`dirname $0`/link_wrapper.sh | |
12 | |
13 make -j2 chrome | |
OLD | NEW |