[lld] [llvm] [llvm-lib] Add support for -defArm64Native argument. (PR #81426)
Jacek Caban via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 13 04:50:35 PST 2024
================
@@ -215,8 +215,9 @@ int llvm::dlltoolDriverMain(llvm::ArrayRef<const char *> ArgsArr) {
}
}
- if (!Path.empty() && writeImportLibrary(Def->OutputFile, Path, Def->Exports,
- Machine, /*MinGW=*/true))
+ if (!Path.empty() &&
+ writeImportLibrary(Def->OutputFile, Path, Def->Exports, std::nullopt,
----------------
cjacek wrote:
I plan on using it in both llvm-dlltool and lld. I plan to submit llvm-dlltool as soon as this PR settles, lld part will need general ARM64X support in lld, to it will take more time. There was no strong reason to differentiate them in this PR, I guess it was easy to extract the declaration in lld from my WIP tree, while llvm-dlltool will need a small bit of refactoring.
https://github.com/llvm/llvm-project/pull/81426
More information about the llvm-commits
mailing list