mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <mol@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Marian Cichy <m.cichy@pengutronix.de>
Subject: Re: [ptxdist] [APPLIED] ptxdist: add cgdb command
Date: Fri, 30 Oct 2020 13:02:47 +0100	[thread overview]
Message-ID: <E1kYT7H-00Fs4Q-6e@dude03.red.stw.pengutronix.de> (raw)
In-Reply-To: <20201028153543.5092-1-m.cichy@pengutronix.de>

Thanks, applied as b61ac630c7cb2d4f95ecc53452c3d706ccb24e8e.

Michael

[sent from post-receive hook]

On Fri, 30 Oct 2020 13:02:47 +0100, Marian Cichy <m.cichy@pengutronix.de> wrote:
> 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 <m.cichy@pengutronix.de>
> Message-Id: <20201028153543.5092-1-m.cichy@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/bin/ptxdist b/bin/ptxdist
> index 0d5e4328e1d6..0a252e4ab22e 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 <package>	print some basic information about the package
>    print <var>			print the contents of a variable, in the way
> @@ -1761,11 +1763,18 @@ EOF
>  			ptxd_make_log export_src EXPORTDIR="${1}"
>  			exit
>  			;;
> -		gdb)
> +		gdb|cgdb)
> +			local -a prefix
> +			if [ "${cmd}" = "cgdb" ]; then
> +				if [ \! -x "$(which cgdb 2>/dev/null)" ]; then
> +					ptxd_bailout "cgdb is required to be installed on your host-machine."
> +				fi
> +				prefix=( cgdb -d )
> +			fi
>  			check_premake_compiler &&
>  			compiler_prefix="$(ptxd_get_ptxconf PTXCONF_COMPILER_PREFIX)" &&
>  			ptxdist_trap_exit_handler &&
> -			exec "${PTXDIST_PLATFORMDIR}/sysroot-host/lib/wrapper/${compiler_prefix}gdb" "${@}"
> +			exec "${prefix[@]}" "${PTXDIST_PLATFORMDIR}/sysroot-host/lib/wrapper/${compiler_prefix}gdb" "${@}"
>  			;;
>  		get|urlcheck)
>  			declare -a pkgs

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

      reply	other threads:[~2020-10-30 12:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-28 15:35 [ptxdist] [PATCH v2] " Marian Cichy
2020-10-30 12:02 ` Michael Olbrich [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1kYT7H-00Fs4Q-6e@dude03.red.stw.pengutronix.de \
    --to=mol@pengutronix.de \
    --cc=m.cichy@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox