[clang] 57f6923 - Disable Driver/env.c on AIX (NFC) (#161874)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 7 14:05:16 PDT 2025
Author: Kelvin Li
Date: 2025-10-07T17:05:12-04:00
New Revision: 57f69232da622569d3a06ecb717fbf713aa8d457
URL: https://github.com/llvm/llvm-project/commit/57f69232da622569d3a06ecb717fbf713aa8d457
DIFF: https://github.com/llvm/llvm-project/commit/57f69232da622569d3a06ecb717fbf713aa8d457.diff
LOG: Disable Driver/env.c on AIX (NFC) (#161874)
AIX does not use LD_LIBRARY_PATH.
Added:
Modified:
clang/test/Driver/env.c
Removed:
################################################################################
diff --git a/clang/test/Driver/env.c b/clang/test/Driver/env.c
index 56c037c222e54..d1267c0217888 100644
--- a/clang/test/Driver/env.c
+++ b/clang/test/Driver/env.c
@@ -1,5 +1,7 @@
// Some assertions in this test use Linux style (/) file paths.
-// UNSUPPORTED: system-windows
+// TODO: Use LIBPATH on AIX
+// UNSUPPORTED: system-windows, system-aix
+
// RUN: bash -c env | grep LD_LIBRARY_PATH | sed -ne 's/^.*=//p' | tr -d '\n' > %t.ld_library_path
// The PATH variable is heavily used when trying to find a linker.
// RUN: env -i LC_ALL=C LD_LIBRARY_PATH="%{readfile:%t.ld_library_path}" CLANG_NO_DEFAULT_CONFIG=1 \
More information about the cfe-commits
mailing list