summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-06-05 07:30:35 (GMT)
committerGitHub <noreply@github.com>2017-06-05 07:30:35 (GMT)
commit02f21e8bf37deaab1a836f4afd11c5fc8ee30220 (patch)
tree14f8612734a1b2e44e50afc90e9a7651d2339cd5 /scripts
parented1d2d6a0e826b172454bae988de79945a67fe24 (diff)
parent6aaa2a1a67d2f105bac21750b02142201052393f (diff)
Merge pull request #734 from stilor/upgrades
Upgrades (a bunch of)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/debug/300-gdb.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh
index 68510e1..98ef5e5 100644
--- a/scripts/build/debug/300-gdb.sh
+++ b/scripts/build/debug/300-gdb.sh
@@ -190,6 +190,7 @@ do_debug_gdb_build() {
CT_EndStep
fi
+ # TBD combine GDB native and gdbserver backends, build either or both in a single pass.
if [ "${CT_GDB_NATIVE}" = "y" ]; then
local -a native_extra_config
@@ -198,7 +199,9 @@ do_debug_gdb_build() {
native_extra_config=("${extra_config[@]}")
# We may not have C++ language configured for target
- native_extra_config+=("--disable-build-with-cxx")
+ if [ "${GDB_TARGET_DISABLE_CXX_BUILD}" = "y" ]; then
+ native_extra_config+=("--disable-build-with-cxx")
+ fi
# GDB on Mingw depends on PDcurses, not ncurses
if [ "${CT_MINGW32}" != "y" ]; then
@@ -317,7 +320,9 @@ do_debug_gdb_build() {
gdbserver_extra_config=("${extra_config[@]}")
# We may not have C++ language configured for target
- gdbserver_extra_config+=("--disable-build-with-cxx")
+ if [ "${GDB_TARGET_DISABLE_CXX_BUILD}" = "y" ]; then
+ gdbserver_extra_config+=("--disable-build-with-cxx")
+ fi
if [ "${CT_GDB_GDBSERVER_HAS_IPA_LIB}" = "y" ]; then
if [ "${CT_GDB_GDBSERVER_BUILD_IPA_LIB}" = "y" ]; then