diff options
Diffstat (limited to 'repos/core/llvm/0017-clang-use-as-needed-by-default.patch')
| -rw-r--r-- | repos/core/llvm/0017-clang-use-as-needed-by-default.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/repos/core/llvm/0017-clang-use-as-needed-by-default.patch b/repos/core/llvm/0017-clang-use-as-needed-by-default.patch deleted file mode 100644 index baf51e7d..00000000 --- a/repos/core/llvm/0017-clang-use-as-needed-by-default.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 28381edd19f49f3bbc9938a714782e0e92691953 Mon Sep 17 00:00:00 2001 -From: q66 <q66@chimera-linux.org> -Date: Sun, 14 Apr 2024 14:48:51 +0200 -Subject: [PATCH 17/30] clang: use --as-needed by default - ---- - clang/lib/Driver/ToolChains/Gnu.cpp | 7 +++++++ - 1 file changed, 7 insertions(+) - -diff --git a/clang/lib/Driver/ToolChains/Gnu.cpp b/clang/lib/Driver/ToolChains/Gnu.cpp -index 5e9a655ea..263c4632a 100644 ---- a/clang/lib/Driver/ToolChains/Gnu.cpp -+++ b/clang/lib/Driver/ToolChains/Gnu.cpp -@@ -543,6 +543,13 @@ void tools::gnutools::Linker::ConstructJob(Compilation &C, const JobAction &JA, - bool NeedsSanitizerDeps = addSanitizerRuntimes(ToolChain, Args, CmdArgs); - bool NeedsXRayDeps = addXRayRuntime(ToolChain, Args, CmdArgs); - addLinkerCompressDebugSectionsOption(ToolChain, Args, CmdArgs); -+ -+ // Use --as-needed by default for all explicit linker inputs on Linux -+ // We don't reset it afterwards because explicit argument does not -+ // get reset either (and that is permitted, so it should be fine) -+ if (Triple.isOSLinux()) -+ CmdArgs.push_back("--as-needed"); -+ - AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs, JA); - - addHIPRuntimeLibArgs(ToolChain, C, Args, CmdArgs); --- -2.47.0 - |