diff options
author | Alon Zakai <azakai@mozilla.com> | 2011-01-20 19:49:45 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2011-01-20 19:49:45 -0800 |
commit | 326b36f8404417749c34b47aabfe0684ba82d769 (patch) | |
tree | 986c67c7bcf62193c608175d37cc292d28f0e9d8 | |
parent | 8422a8ee2ccb1ace76360b7066183690a3d9ec3f (diff) |
clarify -show-annotations in settings.py
-rw-r--r-- | tests/settings.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/settings.py b/tests/settings.py index c2607a49..b7926ddd 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -24,9 +24,7 @@ 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')) -LLVM_DIS_OPTS = [] -if '2.8' in LLVM_ROOT: - LLVM_DIS_OPTS += ['-show-annotations'] +LLVM_DIS_OPTS = ['-show-annotations'] # For LLVM 2.8+. For 2.7, you may need to do just [] SPIDERMONKEY_ENGINE = [os.path.expanduser('~/Dev/tracemonkey/js/src/js'), '-m', '-j', '-p'] V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')] |