Mail Archives: djgpp/1995/11/01/14:18:17
At 13:57 1995-11-01 GMT, you wrote:
>Hello,
>
>I can compile my C codes
>and I receive no compilation errors. However, when I run the
>compiled codes my computer locks-up. Could this be a memory
>conflict with the GO32 extender (I am running HIMEM.SYS).
>By the way, I know the C source is fine because it compiles and
>runs great on gcc at school (UNIX).
Could you give some details how you invoked GCC ?
A common mistake producing in the described behavior is:
gcc some.c -o some.exe
This may lock your system on executing some.exe .
gcc itself creates no *.exe files. You have to type:
gcc some.c -o some.out
coff2exe some.out
This will create an executable program.
Just a suggestion. Please post more details.
Tony
***************************************************************************
Dipl.-Ing. Anton HELM * mailto:tony AT nt DOT tuwien DOT ac DOT at
Institut fuer Nachrichtentechnik * http://dictator.nt.tuwien.ac.at/~tony/
und Hochfrequenztechnik * http://www.tuwien.ac.at/nthft/
Guszhausstr. 25/389 * phoneto:+43-1-58801-3520
A-1040 Wien, AUSTRIA * faxto:+43-1-5870583
***************************************************************************
- Raw text -