From 1195a23daf1e5cc1978268284b51ec6de6594428 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 30 Dec 2022 23:34:21 +0800 Subject: [PATCH] docker: disable llvm9 alternatives --- docker/03-custom-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/03-custom-install.sh b/docker/03-custom-install.sh index 8d067076..a962153c 100755 --- a/docker/03-custom-install.sh +++ b/docker/03-custom-install.sh @@ -37,8 +37,8 @@ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 # https://ghc.haskell.org/trac/ghc/wiki/Commentary/Compiler/Backends/LLVM/Installing # # GHC 8.10 requires LLVM 9 tools (?) (specifically, llc-9 and opt-9). -update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-9" 50 -update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-9" 50 +#update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-9" 50 +#update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-9" 50 # nodejs 10 (nodejs8 in bionic needs conflicting libssl10-dev) curl -sL https://deb.nodesource.com/setup_10.x | bash -