[clang] [flang] [clang][driver] When -fveclib=ArmPL flag is in use, always link against libamath (PR #116432)
Fangrui Song via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 2 19:24:53 PST 2024
================
@@ -490,6 +490,17 @@ void tools::AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs,
else
A.renderAsInput(Args, CmdArgs);
}
+ if (const Arg *A = Args.getLastArg(options::OPT_fveclib)) {
+ if (A->getNumValues() == 1) {
+ const llvm::Triple &Triple = TC.getTriple();
+ StringRef V = A->getValue();
+ if ((V == "ArmPL") && (Triple.isOSLinux() || Triple.isOSDarwin())) {
----------------
MaskRay wrote:
We prefer no parens for `A == "xxx" && `
https://github.com/llvm/llvm-project/pull/116432
More information about the cfe-commits
mailing list