Re: [newbie] C++ Compiler Help

2000-03-08 Thread Emanuele La Rosa
] C++ Compiler Help Here's how I do it: g++ -o executable_name source_code.cpp That should compile it. I personally have that all set up into a script so it takes less time to type. Put #!/bin/bash g++ -o $1 $1.cpp; ./$1 into a text file, like "compile", chmod it

Re: [newbie] C++ Compiler Help

2000-03-08 Thread ChOPpY C. Chipper
Hey, What is the name of The RPM On The Mandrake 7.0-2 ISO? Which Inlcudes The Header Filez For C++? Thanks, Julien - Original Message - From: Emanuele La Rosa [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 08, 2000 5:00 AM Subject: Re: [newbie] C++ Compiler Help Il

Re: [newbie] C++ Compiler Help

2000-03-08 Thread Anthony Huereca
http://rpmfind.net/linux/RPM/mandrake/7.0/Mandrake/RPMS/libstdc++-devel-2.95.2-3mdk.i586.html http://rpmfind.net/linux/RPM/mandrake/7.0/Mandrake/RPMS/libstdc++-2.95.2-3mdk.i586.html Hey, What is the name of The RPM On The Mandrake 7.0-2 ISO? Which Inlcudes The Header Filez For C++? Thanks,

Re: [newbie] C++ Compiler Help

2000-03-07 Thread ChOPpY C. Chipper
: Re: [newbie] C++ Compiler Help Here's how I do it: g++ -o executable_name source_code.cpp That should compile it. I personally have that all set up into a script so it takes less time to type. Put #!/bin/bash g++ -o $1 $1.cpp; ./$1 into a text file, like "compile", chmod it

Re: [newbie] C++ Compiler Help

2000-03-06 Thread Anthony Huereca
Here's how I do it: g++ -o executable_name source_code.cpp That should compile it. I personally have that all set up into a script so it takes less time to type. Put #!/bin/bash g++ -o $1 $1.cpp; ./$1 into a text file, like "compile", chmod it (chmod u+x compile), and move it in your path,

[newbie] C++ Compiler Help

2000-03-06 Thread ChOPpY C. Chipper
hey, this is an easy question: How do I compile a program under g++ I just can't figure it out lets say, I have a file called "test.cpp" under / the dir how would I compile it? when i try, it does not return anything on the command line and just makes a new command line, just like when i