Re: What's your tools for C++ dev?

2008-01-11 Thread Daniel Burrows
On Fri, Jan 11, 2008 at 06:08:31AM +0100, Misko [EMAIL PROTECTED] was heard to say: And because I only have 33k modem internet connection I do not plan to add any online repository to that list. I would be willing to download single packages that I am interested in only if I could find URL to

Re: What's your tools for C++ dev?

2008-01-10 Thread Misko
On Tue, Jan 08, 2008 at 03:59:59PM -0200, Felix Cuello wrote: *manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about using a POSIX system for development stl-manual - C++-STL documentation in HTML libstdc++6-doc - The GNU Standard C++ Library

Re: What's your tools for C++ dev?

2008-01-10 Thread Daniel Burrows
On Thu, Jan 10, 2008 at 04:17:03AM +0100, Misko [EMAIL PROTECTED] was heard to say: On Tue, Jan 08, 2008 at 03:59:59PM -0200, Felix Cuello wrote: *manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about using a POSIX system for development

Re: What's your tools for C++ dev?

2008-01-10 Thread s. keeling
Daniel Burrows [EMAIL PROTECTED]: On Thu, Jan 10, 2008 at 04:17:03AM +0100, Misko [EMAIL PROTECTED] was heard to say: On Tue, Jan 08, 2008 at 03:59:59PM -0200, Felix Cuello wrote: *manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about

Re: What's your tools for C++ dev?

2008-01-10 Thread Misko
On Fri, Jan 11, 2008 at 03:45:45AM +0100, s. keeling wrote: You can find the documentation for gdb in gdb-doc, and for libc in glibc-doc-reference. gcc and g++ are documented in gcc-doc. which (just to complete your point for the archives) you can get at by adding non-free to your

Re: What's your tools for C++ dev?

2008-01-09 Thread Deng Xiyue
hce [EMAIL PROTECTED] writes: On 1/9/08, Felix Cuello [EMAIL PROTECTED] wrote: Hello Michael, First of all you have to install: manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about using a POSIX system for development stl-manual -

Re: What's your tools for C++ dev?

2008-01-09 Thread Florian Kulzer
On Wed, Jan 09, 2008 at 17:27:42 +1100, hce wrote: On 1/9/08, Felix Cuello wrote: Hello Michael, First of all you have to install: manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about using a POSIX system for development

Re: What's your tools for C++ dev?

2008-01-09 Thread hce
On 1/9/08, Deng Xiyue [EMAIL PROTECTED] wrote: hce [EMAIL PROTECTED] writes: On 1/9/08, Felix Cuello [EMAIL PROTECTED] wrote: Hello Michael, First of all you have to install: manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about

Re: What's your tools for C++ dev?

2008-01-09 Thread Deng Xiyue
hce [EMAIL PROTECTED] writes: On 1/9/08, Deng Xiyue [EMAIL PROTECTED] wrote: hce [EMAIL PROTECTED] writes: On 1/9/08, Felix Cuello [EMAIL PROTECTED] wrote: Hello Michael, First of all you have to install: manpages-dev - Manual pages about using GNU/Linux for development

Re: What's your tools for C++ dev?

2008-01-09 Thread Micha
On Tue, 08 Jan 2008 06:44:27 -0800 Daniel Burrows [EMAIL PROTECTED] wrote: On Tue, Jan 08, 2008 at 10:30:57PM +0800, Michael Yang [EMAIL PROTECTED] was heard to say: Hi all: I'm starting the C++ Developer work on linux, no GUI app involved. Could you tell me what the tools you are

Re: What's your tools for C++ dev?

2008-01-09 Thread Micha
On Wed, 9 Jan 2008 11:19:46 +0800 Michael Yang [EMAIL PROTECTED] wrote: OS's API is what I would need mainly. manpages are good, but it would be better if there is a well organized documents. For example, when I want to investigate some issues on regular expression, in Perl, I can use

Re: What's your tools for C++ dev?

2008-01-09 Thread Daniel Burrows
On Tue, Jan 08, 2008 at 06:44:27AM -0800, Daniel Burrows [EMAIL PROTECTED] was heard to say: libstdc++6-4.2-doc has some documentation for C++ stuff, but for the STL stl-manual. I meant to say that for the STL I prefer the documentation in stl-manual. You can also find this by typing stl

Re: What's your tools for C++ dev?

2008-01-09 Thread Michael Yang
I'm trying geany now, it's light weight and easy to use. working on it. cheers. On Jan 9, 2008 7:39 PM, Micha [EMAIL PROTECTED] wrote: On Tue, 08 Jan 2008 06:44:27 -0800 Daniel Burrows [EMAIL PROTECTED] wrote: On Tue, Jan 08, 2008 at 10:30:57PM +0800, Michael Yang [EMAIL PROTECTED] was

What's your tools for C++ dev?

2008-01-08 Thread Michael Yang
Hi all: I'm starting the C++ Developer work on linux, no GUI app involved. Could you tell me what the tools you are working with? I'm trying with g++ and vim. Is there a package containing the help doc for the library API, like the MSDN on Windows. Thanks for your helps. -M.

Re: What's your tools for C++ dev?

2008-01-08 Thread Magnus Therning
On 1/8/08, Michael Yang [EMAIL PROTECTED] wrote: Hi all: I'm starting the C++ Developer work on linux, no GUI app involved. Could you tell me what the tools you are working with? I'm trying with g++ and vim. Is there a package containing the help doc for the library API, like the MSDN on

Re: What's your tools for C++ dev?

2008-01-08 Thread Hugo Vanwoerkom
Michael Yang wrote: Hi all: I'm starting the C++ Developer work on linux, no GUI app involved. Could you tell me what the tools you are working with? I'm trying with g++ and vim. Is there a package containing the help doc for the library API, like the MSDN on Windows. I use mainly Qt4

Re: What's your tools for C++ dev?

2008-01-08 Thread Felix Cuello
Hello Michael, First of all you have to install: *manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about using a POSIX system for development stl-manual - C++-STL documentation in HTML libstdc++6-doc - The GNU Standard C++ Library v3

Re: What's your tools for C++ dev?

2008-01-08 Thread Michael Yang
OS's API is what I would need mainly. manpages are good, but it would be better if there is a well organized documents. For example, when I want to investigate some issues on regular expression, in Perl, I can use perldoc -q reg, in Java, I can search the class name with the keyword, in Qt, I

Re: What's your tools for C++ dev?

2008-01-08 Thread Michael Yang
It's great, thx very much, Felix. It's detail enough, I'm checking them out. -M. On Jan 9, 2008 1:59 AM, Felix Cuello [EMAIL PROTECTED] wrote: Hello Michael, First of all you have to install: *manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual

Re: What's your tools for C++ dev?

2008-01-08 Thread Scott Gifford
Michael Yang [EMAIL PROTECTED] writes: [...] when I want to investigate some issues on regular expression, in Perl, I can use perldoc -q reg, in Java, I can search the class name with the keyword, in Qt, I can check the classes related to regular expression within assistant doc. With

Re: What's your tools for C++ dev?

2008-01-08 Thread Daniel Burrows
On Tue, Jan 08, 2008 at 10:30:57PM +0800, Michael Yang [EMAIL PROTECTED] was heard to say: Hi all: I'm starting the C++ Developer work on linux, no GUI app involved. Could you tell me what the tools you are working with? I'm trying with g++ and vim. Is there a package containing the

Re: What's your tools for C++ dev?

2008-01-08 Thread Daniel Burrows
On Wed, Jan 09, 2008 at 11:19:46AM +0800, Michael Yang [EMAIL PROTECTED] was heard to say: OS's API is what I would need mainly. manpages are good, but it would be better if there is a well organized documents. For example, when I want to investigate some issues on regular expression, in

Re: What's your tools for C++ dev?

2008-01-08 Thread hce
On 1/9/08, Felix Cuello [EMAIL PROTECTED] wrote: Hello Michael, First of all you have to install: manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about using a POSIX system for development stl-manual - C++-STL documentation in HTML

Re: What's your tools for C++ dev?

2008-01-08 Thread hce
On 1/9/08, Felix Cuello [EMAIL PROTECTED] wrote: Hello Michael, First of all you have to install: manpages-dev - Manual pages about using GNU/Linux for development manpages-posix-dev - Manual pages about using a POSIX system for development stl-manual - C++-STL documentation in HTML