Re: [gentoo-user] splitdebug

2006-06-15 Thread Neil Bothwick
On Wed, 14 Jun 2006 17:01:18 -0700, Richard Fish wrote: > ldd `which kontact kmail knode akregator` | grep '=>' | awk '{print > $3}' \ > | sort | uniq | xargs equery belongs | grep '/' | sort | uniq \ > | xargs printf "=%s\n" | xargs emerge -p --oneshot > > (Ok people, have at it. Show m

Re: [gentoo-user] splitdebug

2006-06-14 Thread Richard Fish
On 6/14/06, Bo Ørsted Andresen <[EMAIL PROTECTED]> wrote: Just in case others are interested I ended out with this script: Very nice! -Richard -- gentoo-user@gentoo.org mailing list

Re: [gentoo-user] splitdebug

2006-06-14 Thread Bo Ørsted Andresen
Just in case others are interested I ended out with this script: === #/bin/bash for arg in $@; do if [[ "${arg}" =~ "^\-" ]]; then EMERGE_ARGS="${EMERGE_ARGS} ${arg}" else BINARIES="${BINARIES} ${arg}"

Re: [gentoo-user] splitdebug

2006-06-14 Thread Bo Ørsted Andresen
On Thursday 15 June 2006 02:01, Richard Fish wrote: > I was thinking more like: > > ldd `which kontact kmail knode akregator` | grep '=>' | awk '{print $3}' \ >     | sort | uniq | xargs equery belongs | grep '/' | sort | uniq \ >     | xargs printf "=%s\n" | xargs emerge -p --oneshot > > (Ok peopl

Re: [gentoo-user] splitdebug

2006-06-14 Thread Richard Fish
On 6/14/06, Bo Ørsted Andresen <[EMAIL PROTECTED]> wrote: Like this: # emerge -ep kontact kmail knode akregator | awk '$1~/ebuild/{print $4}' | \ sed -e 's/\-[0-9][A-Za-z0-9._-]*$//' | grep lib | xargs emerge -vp This will merge all of system. I was thinking more like: ldd `which kon

Re: [gentoo-user] splitdebug

2006-06-14 Thread Bo Ørsted Andresen
On Wednesday 14 June 2006 23:28, Richard Fish wrote: > For "full" advantage, yes, you would need to emerge -e world, since > otherwise the debugging information will only be generated for new > merges.  And of course, any binary packages won't get debug symbols in > any case. Thanks. Good to know.

Re: [gentoo-user] splitdebug

2006-06-14 Thread Richard Fish
On 6/14/06, Bo Ørsted Andresen <[EMAIL PROTECTED]> wrote: If I want to take full advantage of the new splitdebug feature. Should I then emerge -e world? I don't think the backtraces doc [1] answers that. For "full" advantage, yes, you would need to emerge -e world, since otherwise the debugging

[gentoo-user] splitdebug

2006-06-14 Thread Bo Ørsted Andresen
If I want to take full advantage of the new splitdebug feature. Should I then emerge -e world? I don't think the backtraces doc [1] answers that. [1] http://www.gentoo.org/proj/en/qa/backtraces.xml -- Bo Andresen pgpvq828oGjCZ.pgp Description: PGP signature

Re: [gentoo-user] splitdebug vs USE debug

2006-05-01 Thread Richard Fish
On 5/1/06, Graham Murray <[EMAIL PROTECTED]> wrote: In the 'debugging' howto referenced in this week's GWN it mentions the CFLAGS and setting FEATURES to either nostrip or splitdebug. However, there is also a global 'debug' USE flag. Should this also be set if setting CFLAGS to include -g and FEA

[gentoo-user] splitdebug vs USE debug

2006-05-01 Thread Graham Murray
In the 'debugging' howto referenced in this week's GWN it mentions the CFLAGS and setting FEATURES to either nostrip or splitdebug. However, there is also a global 'debug' USE flag. Should this also be set if setting CFLAGS to include -g and FEATURES splitdebug in /etc/make.conf? -- gentoo-user@g