mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-24 23:16:42 +00:00
6102726147
Currently, builds for build and target (matching the current implementation). Need to add building for host for canadian crosses. TIC_PATH is removed - configure in ncurses searches $PATH, so it finds 'tic' in buildtools anyway. Arguably unneeded code for MacOS also removed, with a FIXME comment for validation by someone using MacOS. Signed-off-by: Alexey Neyman <stilor@att.net>
23 lines
510 B
Plaintext
23 lines
510 B
Plaintext
# Menu for the native GDB
|
|
|
|
config GDB_NATIVE
|
|
bool
|
|
prompt "Native gdb"
|
|
depends on ! BARE_METAL
|
|
depends on ! BACKEND
|
|
select EXPAT_TARGET
|
|
select NCURSES_TARGET
|
|
help
|
|
Build and install a native gdb for the target, to run on the target.
|
|
|
|
if GDB_NATIVE
|
|
|
|
config GDB_NATIVE_STATIC
|
|
bool
|
|
prompt "Build a static native gdb"
|
|
help
|
|
In case you have trouble with dynamic loading of shared libraries,
|
|
you will find that a static gdb comes in handy.
|
|
|
|
endif # GDB_NATIVE
|