From 119567e1760e9bf8ec7967464bac63c08ab20a89 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Wed, 14 Sep 2022 11:55:27 +0200 Subject: [PATCH] Ports: Remove the duplicated Clang compiler symlinks Those have been added to the Clang build script in d4d6f2d945153e9f77c4cfeee12cd0fcc6b72b68, and now that the Clang version has been updated, everyone should have those symlinks already anyways. --- Ports/.hosted_defs.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Ports/.hosted_defs.sh b/Ports/.hosted_defs.sh index 13cc410062..4a7a5e878c 100644 --- a/Ports/.hosted_defs.sh +++ b/Ports/.hosted_defs.sh @@ -33,12 +33,6 @@ if [ "$SERENITY_TOOLCHAIN" = "Clang" ]; then export OBJCOPY="llvm-objcopy" export STRIP="llvm-strip" export CXXFILT="llvm-cxxfilt" - # FIXME: Remove after next toolchain update (symlinks already in BuildClang.sh) - if [ ! -f "${SERENITY_TOOLCHAIN_BINDIR}/${SERENITY_ARCH}-pc-serenity-clang" ]; then - ln -s clang "${SERENITY_TOOLCHAIN_BINDIR}/${SERENITY_ARCH}-pc-serenity-clang" - ln -s clang++ "${SERENITY_TOOLCHAIN_BINDIR}/${SERENITY_ARCH}-pc-serenity-clang++" - echo "--sysroot=${SERENITY_BUILD_DIR}/Root" > "${SERENITY_TOOLCHAIN_BINDIR}/${SERENITY_ARCH}-pc-serenity.cfg" - fi else export SERENITY_BUILD_DIR="${SERENITY_SOURCE_DIR}/Build/${SERENITY_ARCH}" export SERENITY_TOOLCHAIN_BINDIR="${SERENITY_SOURCE_DIR}/Toolchain/Local/${SERENITY_ARCH}/bin"