diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-03 18:26:55 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-03 18:26:55 -0700 |
commit | 3f89bd84dcfe60c9ac706a54de666f919af643cd (patch) | |
tree | b5ae1b15e27fd19cae794b19f40a15615eaefac4 /tools/shared.py | |
parent | b2508f4d42535432e6d1541888c742c986f47862 (diff) |
simplify emmaken with EMMAKEN_JUST_CONFIGURE, and use llvm-ld instead of llvm-link for better compatibility
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 ce42d794..cc466e68 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -14,6 +14,7 @@ exec(open(CONFIG_FILE, 'r').read()) CLANG=os.path.expanduser(os.path.join(LLVM_ROOT, 'clang++')) LLVM_LINK=os.path.join(LLVM_ROOT, 'llvm-link') +LLVM_LD=os.path.join(LLVM_ROOT, 'llvm-ld') LLVM_OPT=os.path.expanduser(os.path.join(LLVM_ROOT, 'opt')) LLVM_AS=os.path.expanduser(os.path.join(LLVM_ROOT, 'llvm-as')) LLVM_DIS=os.path.expanduser(os.path.join(LLVM_ROOT, 'llvm-dis')) |