From 14bc3ea62d7256f457426b0ad28697eae3eaea19 Mon Sep 17 00:00:00 2001 From: slipher Date: Mon, 22 Jun 2026 09:46:01 -0500 Subject: [PATCH] Don't use lld when building with GCC This was described as a hack for building on Ubuntu Precise. Now LLVM is not a dependency when building with GCC (--no-clang on scons command line). --- SConstruct | 5 ----- 1 file changed, 5 deletions(-) diff --git a/SConstruct b/SConstruct index 6dc544d18a..cf2aca4857 100755 --- a/SConstruct +++ b/SConstruct @@ -2494,11 +2494,6 @@ def SetUpLinuxEnvArm(env): else: env.Prepend(CCFLAGS=sysroot_flags, ASFLAGS=[], - # The -rpath-link argument is needed on Ubuntu/Precise to - # avoid linker warnings about missing ld.linux.so.3. - # TODO(sbc): remove this once we stop supporting Precise - # as a build environment. - LINKFLAGS=['-fuse-ld=lld'] + sysroot_flags ) # Note we let the compiler choose whether it's -marm or -mthumb by # default. The hope is this will have the best chance of testing