Re: Debian 6.0.3 i386 - g++ hello.cpp - error: iostream.h: No such file or directory

2011-12-22 Thread David Christensen
On 12/21/2011 07:34 PM, Ashton Fagg wrote: I've used Big C++ by Cay Horstmann and Timothy Budd. It's great if you're just starting off but it also includes a fair bit of more advanced stuff also. It was a prescribed text book for one of my university subjects and I must confess it's very nice -

Debian 6.0.3 i386 - g++ hello.cpp - error: iostream.h: No such file or directory

2011-12-21 Thread David Christensen
debian-user: I'm attempting to compile C++ hello, world! on Debian 6.0.3 i386 and seem to be missing iostream.h (?). libstdc++6 seems to be installed (?). Do I need one of these packages? http://packages.debian.org/search?searchon=contentskeywords=iostream.hmode=pathsuite=stablearch=i386

Re: Debian 6.0.3 i386 - g++ hello.cpp - error: iostream.h: No such file or directory

2011-12-21 Thread Bob Proulx
David Christensen wrote: I'm attempting to compile C++ hello, world! on Debian 6.0.3 i386 and seem to be missing iostream.h (?). libstdc++6 seems to be installed (?). Do I need one of these packages? No. The problem is that C++ has changed significantly over the years. You are operating

Re: Debian 6.0.3 i386 - g++ hello.cpp - error: iostream.h: No such file or directory

2011-12-21 Thread David Christensen
On 12/21/2011 06:26 PM, Bob Proulx wrote: The problem is that C++ has changed significantly over the years. You are operating from obsolete documentation. The new names for the header files no longer contain a .h on the end. Try compiling this program instead. #includeiostream int main () {

Re: Debian 6.0.3 i386 - g++ hello.cpp - error: iostream.h: No such file or directory

2011-12-21 Thread Ashton Fagg
On 22/12/11 12:38, David Christensen wrote: What would be some good books for current C++ on Debian Squeeze? I've used Big C++ by Cay Horstmann and Timothy Budd. It's great if you're just starting off but it also includes a fair bit of more advanced stuff also. It was a prescribed text book

Re: gcc sucht iostream.h

2002-11-07 Thread Kevin Krammer
On Mittwoch, 6. November 2002 20:26, Christoph Glaubitz wrote: Hi, On Wed, Nov 06, 2002 at 07:56:53PM +0100, Klaus-M. Klingsporn wrote: hallo.c:1:22: iostream.h: Datei oder Verzeichnis nicht gefunden Es gibt hier eine solche Datei in /usr/include/g++-3/iostream.h aber auch wenn er das

gcc sucht iostream.h

2002-11-06 Thread Klaus-M . Klingsporn
Ihr Lieben, mein Sohn will sich im Kompilieren bzw. Programme schreiben schulen. Kein Problem dachte ich, aber kaum hat er aus seinem Buch das erste hallo.c-Programm abgeschrieben und will den gcc starten, meldet dieser: hallo.c:1:22: iostream.h: Datei oder Verzeichnis nicht gefunden Es gibt

Re: gcc sucht iostream.h

2002-11-06 Thread Christoph Glaubitz
Hi, On Wed, Nov 06, 2002 at 07:56:53PM +0100, Klaus-M. Klingsporn wrote: hallo.c:1:22: iostream.h: Datei oder Verzeichnis nicht gefunden Es gibt hier eine solche Datei in /usr/include/g++-3/iostream.h aber auch wenn er das Programm explizit mit dem gcc-3.0 zu compilieren versucht, erhält

makefile to get iostream.h, etc

2002-06-28 Thread Paul Scott,,,
Hi, I have been working on a program to recover some data from a broken ext2 partition. I have been using streaming objects. When I compile with g++ with no options the header files iostream.h and fstream.h are found just fine. I am now trying to write a makefile which I haven't done

Re: makefile to get iostream.h, etc

2002-06-28 Thread Colin Watson
On Fri, Jun 28, 2002 at 01:45:41AM -0700, Paul Scott,,, wrote: I have been working on a program to recover some data from a broken ext2 partition. I have been using streaming objects. When I compile with g++ with no options the header files iostream.h and fstream.h are found just fine

Re: makefile to get iostream.h, etc

2002-06-28 Thread Paul Scott,,,
Colin Watson wrote: On Fri, Jun 28, 2002 at 01:45:41AM -0700, Paul Scott,,, wrote: [...] make: *** [fixext2fs.o] Error 1 How do I tell the makefile how to find these? You shouldn't have to do so explicitly. What does your makefile look like? I would guess that naming C++ source

Re: makefile to get iostream.h, etc

2002-06-28 Thread Paul Scott,,,
Paul Scott,,, wrote: Colin Watson wrote: On Fri, Jun 28, 2002 at 01:45:41AM -0700, Paul Scott,,, wrote: I would guess that naming C++ source files foo.c doesn't help. Try foo.cpp instead, and then make's default rules will be more useful to you. Silly me. That makes sense. I'll let

Re: makefile to get iostream.h, etc

2002-06-28 Thread Brian Nelson
Paul Scott,,, [EMAIL PROTECTED] writes: Hi, I have been working on a program to recover some data from a broken ext2 partition. I have been using streaming objects. When I compile with g++ with no options the header files iostream.h and fstream.h are found just fine. I am now trying

Re: makefile to get iostream.h, etc

2002-06-28 Thread Brian Nelson
Paul Scott,,, [EMAIL PROTECTED] writes: Paul Scott,,, wrote: Colin Watson wrote: On Fri, Jun 28, 2002 at 01:45:41AM -0700, Paul Scott,,, wrote: I would guess that naming C++ source files foo.c doesn't help. Try foo.cpp instead, and then make's default rules will be more useful to you.

Re: Include iostream.h

1999-09-13 Thread J.H.M. Dassen \(Ray\)
On Sun, Sep 12, 1999 at 13:52:49 -0700, Dan Smith wrote: What debian package contains the include file iostream.h? The -dev package of libstdc++, unless you have a very old system, in which case it's in the -dev package of libg++. The precise package name is release-dependent; grep 'Package

Include iostream.h

1999-09-12 Thread Dan Smith
Please send replies directly to me--I am not subscribed to the list What debian package contains the include file iostream.h? And if there is none, where can I download it? __ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com

Re: Iostream.h

1997-08-04 Thread meierrj
Kevin, #include iostream.h and the compile fails, does anyone know where I can get this H file? what packages is it in ... is this a C++ Header file of a C Header File? Try /usr/include/g++, /usr/include, /usr/lib/g++-include. You will need a copy of g++. Mail me direct, if you need

Iostream.h

1997-08-01 Thread Kevin J Poorman
I have just bought a book titled On to C++ a book that was recomened to me by a freind Now partway into the book when I'm trying some of the examples it calls for the statement #include iostream.h and the compile fails, does anyone know where I can get this H file? what packages

Re: Iostream.h

1997-08-01 Thread Jean Pierre LeJacq
On Fri, 1 Aug 1997, Kevin J Poorman wrote: #include iostream.h and the compile fails, does anyone know where I can get this H file? what packages is it in ... is this a C++ Header file of a C Header File? Its in the libg++ package. -- Jean Pierre -- TO UNSUBSCRIBE FROM THIS MAILING LIST

Re: Iostream.h

1997-08-01 Thread Chris R. Martin
At 10:38 AM 8/1/97 CDT, Kevin J Poorman wrote: I have just bought a book titled On to C++ a book that was recomened to me by a freind Now partway into the book when I'm trying some of the examples it calls for the statement #include iostream.h and the compile fails, does anyone know where I

Re: gcc - iostream.h

1997-03-22 Thread Philippe Troin
[EMAIL PROTECTED] said: I recently installed the basic development files - gcc, cpp, binutils, libs, and libs-dev. When I tried to compile a program with just a cout line it says iostream.h: no such file... Did you invoke the compiler with g++ or gcc ? For compiling C++ programs, you

Re: gcc - iostream.h

1997-03-22 Thread Jean Pierre LeJacq
installed the basic development files - gcc, cpp, binutils, libs, and libs-dev. When I tried to compile a program with just a cout line it says iostream.h: no such file... I remeber seeing a lot of this on the linux newsgroup, and there seemed to be as many theories as there were answers

gcc - iostream.h

1997-03-21 Thread Jeff Shilt
I recently installed the basic development files - gcc, cpp, binutils, libs, and libs-dev. When I tried to compile a program with just a cout line it says iostream.h: no such file... I remeber seeing a lot of this on the linux newsgroup, and there seemed to be as many theories as there were