mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-24 06:56:40 +00:00
Un-mark gdb and dmalloc being EXPERIMENTAL.
Mark native gdb as being EXPERIMENTAL (it depends on termcap, which we don't have yet).
This commit is contained in:
parent
db2d59f091
commit
41e8d132ce
@ -4,7 +4,6 @@ menuconfig DMALLOC
|
|||||||
bool
|
bool
|
||||||
prompt "dmalloc"
|
prompt "dmalloc"
|
||||||
default n
|
default n
|
||||||
depends on EXPERIMENTAL
|
|
||||||
|
|
||||||
if DMALLOC
|
if DMALLOC
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ menuconfig GDB
|
|||||||
bool
|
bool
|
||||||
prompt "gdb"
|
prompt "gdb"
|
||||||
default n
|
default n
|
||||||
depends on EXPERIMENTAL
|
|
||||||
help
|
help
|
||||||
Enable gdb for the target
|
Enable gdb for the target
|
||||||
|
|
||||||
@ -21,6 +20,7 @@ config GDB_NATIVE
|
|||||||
bool
|
bool
|
||||||
prompt "Native gdb"
|
prompt "Native gdb"
|
||||||
default n
|
default n
|
||||||
|
depends on EXPERIMENTAL
|
||||||
help
|
help
|
||||||
Build and install a native gdb for the target, to run on the target.
|
Build and install a native gdb for the target, to run on the target.
|
||||||
|
|
||||||
|
@ -95,8 +95,8 @@ do_debug_gdb_build() {
|
|||||||
CT_DoStep EXTRA "Installing native gdb"
|
CT_DoStep EXTRA "Installing native gdb"
|
||||||
CT_DoLog EXTRA "Configuring native gdb"
|
CT_DoLog EXTRA "Configuring native gdb"
|
||||||
|
|
||||||
mkdir -p "${CT_BUILD_DIR}/build-gdb-cross"
|
mkdir -p "${CT_BUILD_DIR}/build-gdb-native"
|
||||||
cd "${CT_BUILD_DIR}/build-gdb-cross"
|
cd "${CT_BUILD_DIR}/build-gdb-native"
|
||||||
|
|
||||||
"${gdb_src_dir}/configure" \
|
"${gdb_src_dir}/configure" \
|
||||||
--build=${CT_BUILD} \
|
--build=${CT_BUILD} \
|
||||||
@ -109,7 +109,7 @@ do_debug_gdb_build() {
|
|||||||
--disable-gdbtk \
|
--disable-gdbtk \
|
||||||
--without-x \
|
--without-x \
|
||||||
--disable-sim \
|
--disable-sim \
|
||||||
--enable-gdbserver \
|
--disable-gdbserver \
|
||||||
--without-included-gettext \
|
--without-included-gettext \
|
||||||
${extra_config} 2>&1 |CT_DoLog ALL
|
${extra_config} 2>&1 |CT_DoLog ALL
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user