Mail Archives: djgpp/2001/09/04/10:30:06
>Questions :
> 1. Does
> gcc -Wall myfile.cc
> create executable program for C++ source ?
no
> 2. If the answer on question#1 is NO :
> Must *executable program for C++ source* be created in 2 steps :
> gcc -c -Wall myfile.cc
> gxx -o myprog.exe myfile.o ?
no, you can also do : gpp myfile.cc -o myfile.exe
> 3. Is gpp C++-compiler ?
yes
> In other words, does
> gpp -Wall myfile.cc
> create executable program for C++ source ?
you must specify the executable's name. See above.
- Raw text -