RE: [newbie] gcc doesn't understand iostream.h

1999-09-12 Thread Ken Wilson
Try using g++ instead of gcc. Otherwise, you have to link the c++ libraries manually. Ken Wilson First Law of Optimization: The speed of a nonworking program is irrelevant (Steve Heller, 'Efficient C/C++ Programming') -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [newbie] gcc doesn't understand iostream.h

1999-09-12 Thread Bernhard Rosenkraenzer
On Sun, 12 Sep 1999, Ty Mixon wrote: Since my reinstall I can't compile my simple Comp. Sci. I programs under gcc. It gives me errors saying undefined function calls to cout, cin, etc. How do I get my header libraries back? This is C++ - you probably forgot to install gcc-c++,

RE: [newbie] gcc doesn't understand iostream.h

1999-09-12 Thread Ty Mixon
Thanks!! Original Message On 9/12/99, 9:37:20 AM, "Ken Wilson" [EMAIL PROTECTED] wrote regarding RE: [newbie] gcc doesn't understand iostream.h: Try using g++ instead of gcc. Otherwise, you have to link the c++ libraries manually. Ken Wilson First Law of Optimization: