Re: [gentoo-user] strip

2005-03-30 Thread Aaron Walker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Graham Murray wrote: A. Khattri [EMAIL PROTECTED] writes: You can switch off the stripping by setting the nostrip variable in the FEATURES variable in /etc/make.conf. The problem with that is that it is global. Setting 'nostrip' is

Re: [gentoo-user] strip

2005-03-30 Thread Michal Kurgan
On Wednesday 30 of March 2005 12:45, Aaron Walker wrote: I have the following in my .bashrc: alias debug=USE='debug' FEATURES='nostrip' CFLAGS='-ggdb3' CXXFLAGS='-ggdb3' Then you can just do: $ debug emerge foo Cheers Thanks... that is good idea... But i think when i put debug in my use

Re: [gentoo-user] strip

2005-03-30 Thread Michal Kurgan
On Tuesday 29 of March 2005 00:04, Michal Kurgan wrote: [...] thanks for all answers. :-) -- Michal Kurgan -- gentoo-user@gentoo.org mailing list

Re: [gentoo-user] strip

2005-03-29 Thread Bastian Balthazar Bux
Graham Murray wrote: A. Khattri [EMAIL PROTECTED] writes: You can switch off the stripping by setting the nostrip variable in the FEATURES variable in /etc/make.conf. The problem with that is that it is global. Setting 'nostrip' is something that is probably wanted on a per-package basis more

Re: [gentoo-user] strip

2005-03-29 Thread Nick Rout
On Tue, 2005-03-29 at 06:52 +0100, Graham Murray wrote: A. Khattri [EMAIL PROTECTED] writes: You can switch off the stripping by setting the nostrip variable in the FEATURES variable in /etc/make.conf. The problem with that is that it is global. Setting 'nostrip' is something that is

Re: [gentoo-user] strip

2005-03-29 Thread A. Khattri
On Tue, 29 Mar 2005, Nick Rout wrote: perhaps we need per package feature via an addition to /etc/portage - /etc/portage/package.features with a line like: app-misc/foo nostrip Sounds like a good idea to me... -- -- gentoo-user@gentoo.org mailing list

Re: [gentoo-user] strip

2005-03-29 Thread Jason Cooper
A. Khattri ([EMAIL PROTECTED]) scribbled: On Tue, 29 Mar 2005, Nick Rout wrote: perhaps we need per package feature via an addition to /etc/portage - /etc/portage/package.features with a line like: app-misc/foo nostrip Sounds like a good idea to me... Apparently, not everyone

Re: [gentoo-user] strip

2005-03-29 Thread A. Khattri
On Tue, 29 Mar 2005, Jason Cooper wrote: Apparently, not everyone agrees: http://bugs.gentoo.org/show_bug.cgi?id=51023 Though, I think USE flags were originally supposed to be global-only as well... Thank god they're not - otherwise I wouldn't be using Gentoo... -- --

[gentoo-user] strip

2005-03-28 Thread Michal Kurgan
I currently develop a qt based application. As i was debugging i saw there is problem with qt classes (incomplete type dbg information), problem was that i haven't got debugging symbols i qt lib, so first i do added debug flag to this ebuild (/etc/portage/packages.use) and emerged qt... And

Re: [gentoo-user] strip

2005-03-28 Thread A. Khattri
On Tue, 29 Mar 2005, Michal Kurgan wrote: I currently develop a qt based application. As i was debugging i saw there is problem with qt classes (incomplete type dbg information), problem was that i haven't got debugging symbols i qt lib, so first i do added debug flag to this ebuild

Re: [gentoo-user] strip

2005-03-28 Thread Matthew Cline
You can add FEATURES=nostrip to make.conf to prevent stripping post-emerge. For more info, read man make.conf Matt On Tue, 29 Mar 2005 00:04:31 +0200, Michal Kurgan [EMAIL PROTECTED] wrote: I currently develop a qt based application. As i was debugging i saw there is problem with qt classes

Re: [gentoo-user] strip

2005-03-28 Thread Graham Murray
A. Khattri [EMAIL PROTECTED] writes: You can switch off the stripping by setting the nostrip variable in the FEATURES variable in /etc/make.conf. The problem with that is that it is global. Setting 'nostrip' is something that is probably wanted on a per-package basis more often than as a