From c84dddf2f281cfe5b45f4c69a91efe5a53739123 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Wed, 10 Mar 2021 15:59:00 +0000 Subject: [PATCH] ci: remove '-Wl,-z,now' workaround This removes extending LDFLAGS with '-Wl,-z,now'. This was added as workaround but never really worked. It is correctly fixed with pull request #1379 Signed-off-by: Adrian Reber --- scripts/ci/run-ci-tests.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/scripts/ci/run-ci-tests.sh b/scripts/ci/run-ci-tests.sh index b568ff43f..0a01f4ce8 100755 --- a/scripts/ci/run-ci-tests.sh +++ b/scripts/ci/run-ci-tests.sh @@ -136,12 +136,6 @@ if [ "${CD_TO_TOP}" = "1" ]; then cd ../../ fi -if [ "$CLANG" = "1" ]; then - # Needed for clang on Circle CI - LDFLAGS="$LDFLAGS -Wl,-z,now" - export LDFLAGS -fi - export GCOV CC $CC --version time make CC="$CC" -j4 V=1