[Lldb-commits] [PATCH] D127234: [lldb] Add setting to override PE/COFF ABI by module name
Alvin Wong via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 20 09:26:32 PDT 2022
alvinhochun added inline comments.
================
Comment at: lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFFProperties.td:13
+ EnumValues<"OptionEnumValues(g_abi_enums)">,
+ Desc<"A mapping of ABI override to use for specific modules. The module name is matched by its file name with extension. These versions are checked in sequence: exact, lowercase, exact with '.debug' suffix stripped, lowercase with '.debug' suffix stripped.">;
}
----------------
DavidSpickett wrote:
> What are the values accepted for this?
It's the same enum as the setting `plugin.object-file.pe-coff.abi` added in D127048 - `default`, `msvc` and `gnu`.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D127234/new/
https://reviews.llvm.org/D127234
More information about the lldb-commits
mailing list