[PATCH] D138510: [lit][AIX] Add LIBPATH to pass through env vars

David Tenty via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 22 14:25:27 PST 2022


This revision was automatically updated to reflect the committed changes.
Closed by commit rG2edc54edede4: [lit][AIX] Add LIBPATH to pass through env vars (authored by daltenty).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D138510

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


Index: llvm/utils/lit/lit/TestingConfig.py
===================================================================
--- llvm/utils/lit/lit/TestingConfig.py
+++ llvm/utils/lit/lit/TestingConfig.py
@@ -63,7 +63,9 @@
             'DFLTCC',
         ]
 
-        if sys.platform == 'win32':
+        if sys.platform.startswith('aix'):
+            pass_vars += ['LIBPATH']
+        elif sys.platform == 'win32':
             pass_vars += [
                 'COMSPEC',
                 'INCLUDE',


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D138510.477300.patch
Type: text/x-patch
Size: 487 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221122/0061279a/attachment.bin>


More information about the llvm-commits mailing list