为多种架构构建 GDB

问题描述 投票:0回答:0

我想为 Windows 构建 gdb 并将其定位到多个 Linux 架构。

我已经成功地为 Windows 构建了 gdb,它使用下一个命令以 aarch64-linux-gnu 为目标

./configure --host=x86_64-w64-mingw32 --target=aarch64-linux-gnu

但无法将其定位到多种架构。

gdb 文档说有选项 --enable-targets 但是

./configure --help

不打印这样的选项。

我的最终目标是 gdb for Windows 并将其定位到 aarch64-linux-gnu 和 x86_64-pc-linux-gnu 我该怎么办?

gdb mingw
© www.soinside.com 2019 - 2024. All rights reserved.