[libcxx-commits] [PATCH] D99241: [libcxx] [test] Don't add dirs from the LIB env var to PATH
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Mar 30 23:06:18 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7acfd8575673: [libcxx] [test] Don't add dirs from the LIB env var to PATH (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D99241/new/
https://reviews.llvm.org/D99241
Files:
libcxx/utils/libcxx/test/config.py
Index: libcxx/utils/libcxx/test/config.py
===================================================================
--- libcxx/utils/libcxx/test/config.py
+++ libcxx/utils/libcxx/test/config.py
@@ -209,8 +209,6 @@
flags = []
compile_flags = []
link_flags = _prefixed_env_list('LIB', '-L')
- for path in _split_env_var('LIB'):
- self.add_path(self.exec_env, path)
return CXXCompiler(self, clang_path, flags=flags,
compile_flags=compile_flags,
link_flags=link_flags)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D99241.334355.patch
Type: text/x-patch
Size: 569 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210331/f70a042d/attachment.bin>
More information about the libcxx-commits
mailing list