[PATCH] D39640: [lit] Set shlibpath_var on Solaris
Fedor Sergeev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 27 05:33:40 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL319026: [lit] Set shlibpath_var on Solaris (authored by fedor.sergeev).
Changed prior to commit:
https://reviews.llvm.org/D39640?vs=121626&id=124363#toc
Repository:
rL LLVM
https://reviews.llvm.org/D39640
Files:
cfe/trunk/test/Unit/lit.cfg.py
Index: cfe/trunk/test/Unit/lit.cfg.py
===================================================================
--- cfe/trunk/test/Unit/lit.cfg.py
+++ cfe/trunk/test/Unit/lit.cfg.py
@@ -36,7 +36,7 @@
config.environment[symbolizer] = os.environ[symbolizer]
def find_shlibpath_var():
- if platform.system() in ['Linux', 'FreeBSD', 'NetBSD']:
+ if platform.system() in ['Linux', 'FreeBSD', 'NetBSD', 'SunOS']:
yield 'LD_LIBRARY_PATH'
elif platform.system() == 'Darwin':
yield 'DYLD_LIBRARY_PATH'
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39640.124363.patch
Type: text/x-patch
Size: 528 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20171127/0de59033/attachment.bin>
More information about the cfe-commits
mailing list