From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: From: Marian Cichy Date: Mon, 26 Oct 2020 19:18:39 +0100 Message-Id: <20201026181839.6785-1-m.cichy@pengutronix.de> MIME-Version: 1.0 Subject: [ptxdist] [PATCH] ptxdist: add cgdb command List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Cc: Marian Cichy cgdb is a curses-frontend for gdb with some visual conveniences for debugging. ptxdist already has a 'ptxdist gdb' command to invoke gdb with configured sysroot etc., and it would be nice to have when we can also use cgdb. Signed-off-by: Marian Cichy --- bin/ptxdist | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/bin/ptxdist b/bin/ptxdist index 0d5e4328e..91af19cc3 100755 --- a/bin/ptxdist +++ b/bin/ptxdist @@ -765,6 +765,8 @@ Misc: use 'newpackage help' for a longer description nfsroot run a userspace NFS server and export the nfsroot gdb run cross gdb with configured sysroot etc. + cgdb run cross gdb with configured sysroot etc. + with cgdb as frontend bsp-info print some basic information about the BSP package-info print some basic information about the package print print the contents of a variable, in the way @@ -1706,6 +1708,19 @@ EOF check_deps && ptxd_make_log bsp-info ;; + cgdb) + if ! command -v cgdb &>/dev/null + then + echo + echo "error: cgdb is required to be installed on your host-machine." + echo + exit 1 + fi + check_premake_compiler && + compiler_prefix="$(ptxd_get_ptxconf PTXCONF_COMPILER_PREFIX)" && + ptxdist_trap_exit_handler && + exec cgdb -d "${PTXDIST_PLATFORMDIR}/sysroot-host/lib/wrapper/${compiler_prefix}gdb" "${@}" + ;; clean) check_config && check_deps && -- 2.20.1 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de