[PATCH] D135368: [llvm] [lit] Fix use_lld() to respect llvm_shlib_dir

Michał Górny via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 6 22:15:11 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGa64ea173d7b1: [llvm] [lit] Fix use_lld() to respect llvm_shlib_dir (authored by mgorny).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D135368/new/

https://reviews.llvm.org/D135368

Files:
  llvm/utils/lit/lit/llvm/config.py


Index: llvm/utils/lit/lit/llvm/config.py
===================================================================
--- llvm/utils/lit/lit/llvm/config.py
+++ llvm/utils/lit/lit/llvm/config.py
@@ -644,7 +644,7 @@
         self.with_environment('PATH', paths, append_path=True)
 
         lib_dir_props = [self.config.name.lower() + '_libs_dir',
-                         'lld_libs_dir', 'llvm_libs_dir']
+                         'lld_libs_dir', 'llvm_shlib_dir', 'llvm_libs_dir']
         lib_paths = [getattr(self.config, pp) for pp in lib_dir_props
                      if getattr(self.config, pp, None)]
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135368.465970.patch
Type: text/x-patch
Size: 603 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221007/9e205221/attachment.bin>


More information about the llvm-commits mailing list