llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Daniel Chen (DanielCChen) <details> <summary>Changes</summary> 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. --- Full diff: https://github.com/llvm/llvm-project/pull/216763.diff 1 Files Affected: - (added) clang/test/Driver/flang/lit.local.cfg (+3) ``````````diff 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" `````````` </details> https://github.com/llvm/llvm-project/pull/216763 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
