https://github.com/DanielCChen created https://github.com/llvm/llvm-project/pull/216763
This PR is to fix test failure in the AIX buildbot. Flang supports 64-bit mode only. Add a config file to set OBJECT_MODE. >From 8922c9720b8dc2f52cfead7e9170e824b06f3484 Mon Sep 17 00:00:00 2001 From: Daniel Chen <[email protected]> Date: Mon, 17 Aug 2026 12:17:08 -0400 Subject: [PATCH] To fix test failures. --- clang/test/Driver/flang/lit.local.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 clang/test/Driver/flang/lit.local.cfg diff --git a/clang/test/Driver/flang/lit.local.cfg b/clang/test/Driver/flang/lit.local.cfg new file mode 100644 index 0000000000000..54825d83f47ee --- /dev/null +++ b/clang/test/Driver/flang/lit.local.cfg @@ -0,0 +1,3 @@ +# Flang on AIX supports 64-bit only +if "system-aix" in config.available_features: + config.environment["OBJECT_MODE"] = "64" _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
