[clang] [compiler-rt] [llvm] [LFI] Introduce AArch64 LFI Target (PR #167061)
Peter Smith via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 20 07:53:50 PST 2025
================
@@ -0,0 +1,27 @@
+//===-- LFILinux.cpp - LFI ToolChain Implementations ------------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "LFILinux.h"
+
+using namespace clang::driver::toolchains;
+using namespace llvm::opt;
+
+void LFILinuxToolChain::AddCXXStdlibLibArgs(const ArgList &Args,
----------------
smithp35 wrote:
I can't spot a significant difference between this and `ToolChain::AddCXXStdlibLibArgs` are you able to call the Base class implementation here?
If there's going to be changes in a later patch, would be good to leave a comment.
https://github.com/llvm/llvm-project/pull/167061
More information about the llvm-commits
mailing list