[compiler-rt] 7712de3 - [compiler-rt][tests][AIX] Use /opt/freeware/bin/env (#133160)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 13:02:43 PDT 2025
Author: Hubert Tong
Date: 2025-03-27T16:02:40-04:00
New Revision: 7712de3062b979345fae0b9717796339a70c593b
URL: https://github.com/llvm/llvm-project/commit/7712de3062b979345fae0b9717796339a70c593b
DIFF: https://github.com/llvm/llvm-project/commit/7712de3062b979345fae0b9717796339a70c593b.diff
LOG: [compiler-rt][tests][AIX] Use /opt/freeware/bin/env (#133160)
`env -u` is not supported by the system `env` utility on AIX.
`/opt/freeware/bin/env` is the standard path for the GNU coreutils `env`
utility as distributed by the AIX Toolbox for Open Source Software.
Adding `/opt/freeware/bin` to `PATH` causes issues by picking up other
utilities that are less capable, in an AIX context, than the system
ones.
This patch modifies the relevant usage of `env` to use (on AIX) the full
path to `/opt/freeware/bin/env`.
Added:
Modified:
compiler-rt/test/lit.common.cfg.py
Removed:
################################################################################
diff --git a/compiler-rt/test/lit.common.cfg.py b/compiler-rt/test/lit.common.cfg.py
index e15b8aefdd09b..877718c703ba7 100644
--- a/compiler-rt/test/lit.common.cfg.py
+++ b/compiler-rt/test/lit.common.cfg.py
@@ -395,9 +395,10 @@ def get_ios_commands_dir():
if sanitizer not in config.environment:
config.environment[sanitizer] = symbolizer_path
+env_utility = "/opt/freeware/bin/env" if config.host_os == "AIX" else "env"
env_unset_command = " ".join(f"-u {var}" for var in tool_symbolizer_path_list)
config.substitutions.append(
- ("%env_unset_tool_symbolizer_path", f"env {env_unset_command}")
+ ("%env_unset_tool_symbolizer_path", f"{env_utility} {env_unset_command}")
)
# Allow tests to be executed on a simulator or remotely.
More information about the llvm-commits
mailing list