mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 21:07:54 +00:00
74a50972fb
Static liunking is not supported on Darwin, so hide the corresponding options when the build machine is Darwin. Reported-by: Andrea Franceschini <therealmorpheu5@gmail.com> Reported-by: Bryan Hundven <bryanhundven@gmail.com> Reported-by: "Titus von Boxberg" <titus@v9g.de> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
# Menu for the cross GDB
|
|
|
|
config STATIC_TOOLCHAIN
|
|
select GDB_CROSS_STATIC if GDB_CROSS
|
|
|
|
comment "Cross-gdb - disabled (requires expat; re-run ./configure to enable)"
|
|
depends on !CONFIGURE_has_expat
|
|
|
|
comment "Static cross-gdb - disabled (requires static expat; re-run ./configure to enable)"
|
|
depends on STATIC_TOOLCHAIN && !CONFIGURE_has_static_expat
|
|
|
|
config GDB_CROSS
|
|
bool
|
|
prompt "Cross-gdb"
|
|
default y
|
|
depends on CONFIGURE_has_expat
|
|
depends on !STATIC_TOOLCHAIN || CONFIGURE_has_static_expat
|
|
select GDB_GDBSERVER if ! BARE_METAL
|
|
help
|
|
Build and install a cross-gdb for the target, to run on host.
|
|
|
|
if GDB_CROSS
|
|
|
|
config GDB_CROSS_STATIC
|
|
bool
|
|
prompt "Build a static cross gdb"
|
|
depends on CONFIGURE_static_link_ok
|
|
depends on CONFIGURE_has_static_expat
|
|
help
|
|
A static cross gdb can be usefull if you debug on a machine that is
|
|
not the one that is used to compile the toolchain.
|
|
|
|
That way, you can share the cross-gdb without installing a toolchain
|
|
on every machine that will be used to debug target programs.
|
|
|
|
endif # GDB_CROSS
|