Re: GCC problems

2003-03-21 Thread Michael Schwendt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, 21 Mar 2003 17:14:14 -0600, Mark Richardson wrote: > I am running RedHat 8.0 with the latest kernel and downloaded VMWare beta 4 > so I can run my Windows ME apps. During the VM install, the installer could > not find a "gcc" compiler. I pop

GCC problems

2003-03-21 Thread Mark Richardson
I am running RedHat 8.0 with the latest kernel and downloaded VMWare beta 4 so I can run my Windows ME apps. During the VM install, the installer could not find a "gcc" compiler. I popped in my RH 8 install disk, found the "gcc" files and began to install them. THEN I got an error that the insta

Re: GCC problems

2003-03-21 Thread Ben Russo
Mark Richardson wrote: I am running RedHat 8.0 with the latest kernel and downloaded VMWare beta 4 so I can run my Windows ME apps. During the VM install, the installer could not find a "gcc" compiler. I popped in my RH 8 install disk, found the "gcc" files and began to install them. THEN I got

GCC problems

2003-03-21 Thread Mark Richardson
I am running RedHat 8.0 with the latest kernel and downloaded VMWare beta 4 so I can run my Windows ME apps. During the VM install, the installer could not find a "gcc" compiler. I popped in my RH 8 install disk, found the "gcc" files and began to install them. THEN I got an error that the insta

Re: GCC Problems ???

2002-10-18 Thread jkinz
On Thu, Oct 17, 2002 at 06:10:23PM -0600, Aly Dharshi wrote: > #include > > int main() > { > cout << "Testing 1 2 3 ... \n"; > return 0; > } > > > Tried compiling this simple program and can't understand why the error, > system produces the following errors: > > test_cc1.cc: In

GCC Problems ???

2002-10-18 Thread Aly Dharshi
#include int main() { cout << "Testing 1 2 3 ... \n"; return 0; } Tried compiling this simple program and can't understand why the error, system produces the following errors: test_cc1.cc: In function `int main()': test_cc1.cc:5: `cout' undeclared (first use this function) test

Re: GCC Problems ???

2002-10-18 Thread Jim Hayward
On Thu, 2002-10-17 at 17:10, Aly Dharshi wrote: Oops typo in my second fix. In my first reply. That should read. > #include > > int main() > { > std::cout << "Testing 1 2 3 ... \n"; > return 0; > } Regards, Jim H -- redhat-list mailing list unsubscribe mailto:red

Re: GCC Problems ???

2002-10-18 Thread Jim Hayward
On Thu, 2002-10-17 at 17:10, Aly Dharshi wrote: > #include > > int main() > { > cout << "Testing 1 2 3 ... \n"; > return 0; > } > > > Tried compiling this simple program and can't understand why the error, > system produces the following errors: > > test_cc1.cc: In function `in