diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-03-19 10:00:57 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-03-19 10:00:57 -0700 |
commit | ee9393ae048547f8d0d8aef6c00a197fe00234b0 (patch) | |
tree | 0701020e2b3642ac8167dc89a0edafb657127130 /tools/shared.py | |
parent | cad92b918bed03be4b822c7579b0f5d1affb9401 (diff) |
support for llvm 2.9
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/shared.py b/tools/shared.py index 2257d4e4..85da6e9e 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -9,6 +9,7 @@ exec(open(CONFIG_FILE, 'r').read()) # Tools +CLANG=os.path.expanduser(os.path.join(LLVM_ROOT, 'clang++')) LLVM_LINK=os.path.join(LLVM_ROOT, 'llvm-link') LLVM_OPT=os.path.expanduser(os.path.join(LLVM_ROOT, 'opt')) LLVM_AS=os.path.expanduser(os.path.join(LLVM_ROOT, 'llvm-as')) |