From 02a5785371ad0c103af8d712c8f6d9a41351c99d Mon Sep 17 00:00:00 2001 From: David Spickett Date: Thu, 17 Oct 2024 10:05:41 +0100 Subject: [PATCH] Use lld on clang-aarch64-full-2stage We have another bot that uses lld, linaro-clang-aarch64-lld-2stage. However it does not build flang or mlir. I don't think we really need both, so I've added the lld settings to clang-aarch64-full-2stage as well. If this is stable then we can remove linaro-clang-aarch64-lld-2stage. --- buildbot/osuosl/master/config/builders.py | 1 + 1 file changed, 1 insertion(+) diff --git a/buildbot/osuosl/master/config/builders.py b/buildbot/osuosl/master/config/builders.py index 2f1180f4d..55d32ad10 100644 --- a/buildbot/osuosl/master/config/builders.py +++ b/buildbot/osuosl/master/config/builders.py @@ -458,6 +458,7 @@ extra_cmake_args=[ "-DCMAKE_C_FLAGS='-mcpu=cortex-a57'", "-DCMAKE_CXX_FLAGS='-mcpu=cortex-a57'", + "-DLLVM_ENABLE_LLD=True", "-DLLVM_LIT_ARGS='-v'", "-DMLIR_INCLUDE_INTEGRATION_TESTS=True", "-DMLIR_RUN_ARM_SVE_TESTS=True",