diff options
author | Eugene Leviant <eleviant@accesssoftek.com> | 2018-06-20 15:32:47 +0000 |
---|---|---|
committer | Eugene Leviant <eleviant@accesssoftek.com> | 2018-06-20 15:32:47 +0000 |
commit | da873b5e2ed165caeb117175b3618c1be60aae3b (patch) | |
tree | e24e88fcc401be0b1e015025de16d9ec2959eeb8 /llvm/test/lit.cfg.py | |
parent | 52564675c470d3527392afdaaa2857aa6c154e85 (diff) | |
download | bcm5719-llvm-da873b5e2ed165caeb117175b3618c1be60aae3b.tar.gz bcm5719-llvm-da873b5e2ed165caeb117175b3618c1be60aae3b.zip |
[LIT] Enable testing of LLVM gold plugin on Mac OS X
Differential revision: https://reviews.llvm.org/D48350
llvm-svn: 335136
Diffstat (limited to 'llvm/test/lit.cfg.py')
-rw-r--r-- | llvm/test/lit.cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py index 46cd0ea5e77..44e3afb7cb3 100644 --- a/llvm/test/lit.cfg.py +++ b/llvm/test/lit.cfg.py @@ -239,7 +239,7 @@ import subprocess def have_ld_plugin_support(): - if not os.path.exists(os.path.join(config.llvm_shlib_dir, 'LLVMgold.so')): + if not os.path.exists(os.path.join(config.llvm_shlib_dir, 'LLVMgold' + config.llvm_shlib_ext)): return False ld_cmd = subprocess.Popen( |