I need to compile a program in MS DOS. I have Borland Editor, I can compile it using Alt+F9 but the things is what it do at the backend. I want to compile it in MS DOS. I m trying this:

c:\tc\bin>tcc -o hello.exe hello.c

where hello.c is is my file, hello.exe the file I want to produce. Its not working, what shouldI do? and also please tell me also how do I compile .cpp file manually from MS DOS.

link|improve this question

29% accept rate
3  
"Its not working" What does that mean? can you show us the error? – TokenMacGuy Sep 8 '11 at 4:58
@TokenMacGuy This is the error I get, hello.exe the file not found and probably he might be facing the same ! – niko Sep 8 '11 at 7:04
You could possibly also be helped by this page: sandroid.org/TurboC/functionlist.html – Amigable Clark Kant Sep 8 '11 at 11:35
1  
@Amigable Clark Kant he wants the tcc command line options ! not the Turbo that uses gcc commands instead! – niko Sep 8 '11 at 11:39
feedback

3 Answers

up vote -1 down vote accepted

I belive this things must work

c:\tc\bin\tcc -c File.c   \\  To generate objective file
c:\tc\bin\tcc -o File.obj  \\ To generate exe from obj and please use .obj and not .o 
c:\tc\bin\ tcc -run File.c    \\ to generate exe file without .obj file
 c:\tc\bin\File.exe            \\ to run the exe file

I dont know why the

tcc -o good.exe File.obj \\not working, the error is good.exe file not found

I think we cant give a name to .exe file in tcc command line prompt.but its possible in gcc. I dont know about TCC much. If i find it i will let you know it !

Just take a look at these http://bellard.org/tcc/tcc-doc.html#SEC3. This is what I found on google . and googling makes you more powerful so keep on googling the things when you dont know .

Thanks

link|improve this answer
1  
TC and TCC are not the same. – Amigable Clark Kant Sep 8 '11 at 11:31
why I got -1 what did you really mean MR downvoter ? – niko Sep 8 '11 at 11:37
he was asking the tcc right check out his question first and downvote it ! – niko Sep 8 '11 at 11:41
Sorry, I was in a hurry. user672560 asked about Borlands Turbo C compiler for DOS from ca 1990, or so. You gave a link to Fabrice Bellards TCC. While the executable names unfortunately are the same, the compilers are very much not. – Amigable Clark Kant Sep 8 '11 at 12:14
anyways its okay never mind of the points but do not make it once again ! Thanks – niko Sep 8 '11 at 12:47
show 3 more comments
feedback

If I remember correctly, Borland/Turbo C compiler's command line options didn't look like gcc options. You should try tcc /? for a command line help.

link|improve this answer
feedback
Turbo C++ Version 3.00 Copyright (c) 1992 Borland International
Syntax is: TCC [ options ] file[s]     * = default; -x- = turn switch x off
 -1      80186/286 Instructions    -2      80286 Protected Mode Inst.
 -Ax     Disable extensions        -B      Compile via assembly
 -C      Allow nested comments     -Dxxx   Define macro
 -Exxx   Alternate Assembler name  -G      Generate for speed
 -Ixxx   Include files directory   -K      Default char is unsigned
 -Lxxx   Libraries directory       -M      Generate link map
 -N      Check stack overflow      -O      Optimize jumps
 -P      Force C++ compile         -Qxxx   Memory usage control
 -S      Produce assembly output   -Txxx   Set assembler option
 -Uxxx   Undefine macro            -Vx     Virtual table control
 -X      Suppress autodep. output  -Yx     Overlay control
 -Z      Suppress register reloads -a      Generate word alignment
 -b    * Treat enums as integers   -c      Compile only
 -d      Merge duplicate strings   -exxx   Executable file name
 -fxx    Floating point options    -gN     Stop after N warnings
 -iN     Max. identifier length    -jN     Stop after N errors
 -k      Standard stack frame      -lx     Set linker option
 -mx     Set Memory Model          -nxxx   Output file directory
 -oxxx   Object file name          -p      Pascal calls
 -r    * Register variables        -u    * Underscores on externs
 -v      Source level debugging    -wxxx   Warning control
 -y      Produce line number info  -zxxx   Set segment names
C:\TC\BIN>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.