Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7172116

Browse files
committedOct 17, 2024·
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.
1 parent 4d57130 commit 7172116

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎buildbot/osuosl/master/config/builders.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -453,11 +453,12 @@
453453
'NO_STOP_MESSAGE':'1', # For Fortran test-suite
454454
},
455455
testsuite_flags=[
456-
'--cppflags', '-mcpu=cortex-a57',
456+
'--cppflags', '-mcpu=cortex-a57 -fuse-ld=lld',
457457
'--threads=32', '--build-threads=32'],
458458
extra_cmake_args=[
459459
"-DCMAKE_C_FLAGS='-mcpu=cortex-a57'",
460460
"-DCMAKE_CXX_FLAGS='-mcpu=cortex-a57'",
461+
"-DLLVM_ENABLE_LLD=True",
461462
"-DLLVM_LIT_ARGS='-v'",
462463
"-DMLIR_INCLUDE_INTEGRATION_TESTS=True",
463464
"-DMLIR_RUN_ARM_SVE_TESTS=True",

0 commit comments

Comments
 (0)
Please sign in to comment.