[llvm] [llvm-symbolizer] Recognize AIX big archive (PR #150401)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 21 00:53:39 PST 2025
================
@@ -31,8 +31,8 @@ def color_EQ : Joined<["--"], "color=">, HelpText<"Whether to use color when sym
defm debug_file_directory : Eq<"debug-file-directory", "Path to directory where to look for debug files">, MetaVarName<"<dir>">;
defm debuginfod : B<"debuginfod", "Use debuginfod to find debug binaries", "Don't use debuginfod to find debug binaries">;
defm default_arch
- : Eq<"default-arch", "Default architecture (for multi-arch objects)">,
- Group<grp_mach_o>;
+ : Eq<"default-arch", "Default architecture for multi-arch containers (Mach-O objects or AIX archives)">,
+ Group<grp_symbolizer>;
----------------
jh7370 wrote:
I don't think you need a `Group` for generic options. The group was there before because Mach-O-specific options needed separating from the generic ones. This no longer applies, because the option is no longer Mach-O-specific.
https://github.com/llvm/llvm-project/pull/150401
More information about the llvm-commits
mailing list