mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-01 13:49:05 +00:00
Meta: Do not pass non-existing extra arguments to addr2line build step
The variadic nature of the addr2line command is currently taken by the `addresses` option.
This commit is contained in:
parent
3263b629c6
commit
e7fe2d3dab
Notes:
github-actions[bot]
2025-05-27 18:03:53 +00:00
Author: https://github.com/trflynn89
Commit: e7fe2d3dab
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4895
Reviewed-by: https://github.com/gmta ✅
1 changed files with 1 additions and 2 deletions
|
@ -131,7 +131,6 @@ def main():
|
|||
help="Launches the application on the build host in a gdb or lldb session",
|
||||
parents=[preset_parser, target_parser],
|
||||
)
|
||||
|
||||
debug_parser.add_argument(
|
||||
"--debugger", required=False, default="gdb" if platform.host_system == HostSystem.Linux else "lldb"
|
||||
)
|
||||
|
@ -227,7 +226,7 @@ def main():
|
|||
build_main(build_dir, args.target, args.args)
|
||||
elif args.command == "addr2line":
|
||||
build_dir = configure_main(platform, args.preset, args.cc, args.cxx)
|
||||
build_main(build_dir, args.target, args.args)
|
||||
build_main(build_dir, args.target)
|
||||
addr2line_main(build_dir, args.target, args.program, args.addresses)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue