projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfd662f
)
[ASan] now we don't need llvm_obj_root to access llvm-symbolizer tool
author
Alexey Samsonov
<samsonov@google.com>
Tue, 13 Nov 2012 07:55:16 +0000
(07:55 +0000)
committer
Alexey Samsonov
<samsonov@google.com>
Tue, 13 Nov 2012 07:55:16 +0000
(07:55 +0000)
llvm-svn: 167823
compiler-rt/lib/asan/lit_tests/lit.cfg
patch
|
blob
|
history
diff --git
a/compiler-rt/lib/asan/lit_tests/lit.cfg
b/compiler-rt/lib/asan/lit_tests/lit.cfg
index
90cab10
..
7875281
100644
(file)
--- a/
compiler-rt/lib/asan/lit_tests/lit.cfg
+++ b/
compiler-rt/lib/asan/lit_tests/lit.cfg
@@
-68,9
+68,8
@@
config.substitutions.append( ("%clangxx_asan ", (" " + config.clang + " " +
clang_asan_cxxflags + " ")) )
# Setup path to external LLVM symbolizer to run AddressSanitizer output tests.
-llvm_obj_root = getattr(config, 'llvm_obj_root', None)
-if llvm_obj_root:
- llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
+llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
+if llvm_tools_dir:
config.environment['LLVM_SYMBOLIZER_PATH'] = os.path.join(
llvm_tools_dir, "llvm-symbolizer")