Date: Thu, 8 Jul 1999 10:05:16 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: kormt_sereg AT my-deja DOT com cc: djgpp AT delorie DOT com Subject: Re: Now I'm REally confused... In-Reply-To: <7m0c07$n1b$1@nnrp1.deja.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 7 Jul 1999 kormt_sereg AT my-deja DOT com wrote: > I did the code for hello.cpp and named it just that. Now to turn it into > an .obj I right click on gxx.exe and goto the command line and put > gcc -c -Wall hello.cpp or so it says in readme1st. I did this and it > didn't work. And I thought I was so close. :( Don't right-click on anything, DJGPP is not of the ``clickable'' variety. Simply open a DOS box, and then CD to the directory where you created your hello.cpp file and type this into the DOS box: gxx hello.cpp -o hello.exe If all goes well, you shall have hello.exe that you can run. If something goes wrong, you will see error messages from the compiler, which you need to deal with.