From fdba2e4ed12ab2b2490345aed511be32909e88aa Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Thu, 27 Feb 2020 16:27:32 -0500 Subject: [PATCH] [libc++] Update lld version on buildbots to be LLVM-11. --- libcxx/utils/docker/debian9/scripts/buildbot/run_buildbot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcxx/utils/docker/debian9/scripts/buildbot/run_buildbot.sh b/libcxx/utils/docker/debian9/scripts/buildbot/run_buildbot.sh index b458e0eb381d3..7448eb26b79b7 100755 --- a/libcxx/utils/docker/debian9/scripts/buildbot/run_buildbot.sh +++ b/libcxx/utils/docker/debian9/scripts/buildbot/run_buildbot.sh @@ -20,9 +20,9 @@ apt-get install sudo -y # FIXME(EricWF): Remove this hack. It's only in place to temporarily fix linking libclang_rt from the # debian packages. # WARNING: If you're not a buildbot, DO NOT RUN! -apt-get install lld-10 -y +apt-get install lld-11 -y rm /usr/bin/ld -ln -s /usr/bin/lld-10 /usr/bin/ld +ln -s /usr/bin/lld-11 /usr/bin/ld systemctl set-property buildslave.service TasksMax=100000