From 07d87a0c1bc013112e90288d69e956914abc1c19 Mon Sep 17 00:00:00 2001 From: Niels Grewe Date: Mon, 2 Dec 2019 22:53:42 +0100 Subject: [PATCH] ci: use gold linker for 2.0 runtime ABI --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7ea302060..042c9088d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,6 +41,10 @@ before_install: sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-9 10 \ --slave /usr/bin/clang++ clang++ /usr/bin/clang++-9; export PATH=$(echo "$PATH" | sed -e 's/:\/usr\/local\/clang-7.0.0\/bin//'); + if [ "$RUNTIME_VERSION" = "gnustep-2.0" ]; + then + sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 10; + fi; fi; install: ./travis-deps.sh before_script: >