[clang] [flang] [clang][driver] When -fveclib=ArmPL flag is in use, always link against libamath (PR #116432)
David Truby via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 18 04:34:13 PST 2024
================
@@ -490,6 +490,16 @@ 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) {
+ StringRef V = A->getValue();
+ if (V == "ArmPL") {
+ CmdArgs.push_back(Args.MakeArgString("-lamath"));
+ CmdArgs.push_back(Args.MakeArgString("-lm"));
----------------
DavidTruby wrote:
I don't _think_ that -fveclib= works on Windows in the first place. I will check though.
There should probably be an `if windows ...` check around these too regardless, in case we do enable it on future in Windows.
https://github.com/llvm/llvm-project/pull/116432
More information about the cfe-commits
mailing list