diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-07-18 20:48:50 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-07-18 20:48:50 +0000 |
commit | 2e304b6ffd71e211b15808bf613059e6b34b1663 (patch) | |
tree | 48fc390dcb77536b8583b9b347ca3456ba3cbf3a /compiler-rt/lib/lsan/lit_tests | |
parent | 3d8f8ab54d7c042533afa410e2ffcdc0f5e7a100 (diff) | |
download | bcm5719-llvm-2e304b6ffd71e211b15808bf613059e6b34b1663.tar.gz bcm5719-llvm-2e304b6ffd71e211b15808bf613059e6b34b1663.zip |
Use --driver-mode=g++ instead of -ccc-cxx; required after Clang r186605
llvm-svn: 186607
Diffstat (limited to 'compiler-rt/lib/lsan/lit_tests')
-rw-r--r-- | compiler-rt/lib/lsan/lit_tests/lit.common.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/lsan/lit_tests/lit.common.cfg b/compiler-rt/lib/lsan/lit_tests/lit.common.cfg index dfae8db4c89..d52f64ccf21 100644 --- a/compiler-rt/lib/lsan/lit_tests/lit.common.cfg +++ b/compiler-rt/lib/lsan/lit_tests/lit.common.cfg @@ -16,7 +16,7 @@ def get_required_attr(config, attr_name): lsan_lit_src_root = get_required_attr(config, 'lsan_lit_src_root') config.test_source_root = os.path.join(lsan_lit_src_root, 'TestCases') -clang_cxxflags = ("-ccc-cxx " +clang_cxxflags = ("--driver-mode=g++ " + "-g " + "-O0 " + "-m64 ") |