Skip to content

Commit

Permalink
[libc++] Use env to set the tool's environment on Darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Mar 17, 2020
1 parent 768ead0 commit 3d9e6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/utils/libcxx/test/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ def configure_substitutions(self):
if self.target_info.is_darwin():
# Do not pass DYLD_LIBRARY_PATH to the compiler, linker, etc. as
# these tools are not meant to exercise the just-built libraries.
tool_env += 'DYLD_LIBRARY_PATH="" '
tool_env += 'env DYLD_LIBRARY_PATH="" '

sub = self.config.substitutions
cxx_path = tool_env + pipes.quote(self.cxx.path)
Expand Down

0 comments on commit 3d9e6c4

Please sign in to comment.