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\tcc -c File.c \\ To generate the object file
c:\tc\bin\tcc -o File.obj \\ To generate the EXE file from the object file. And please use .obj, not .o
c:\tc\bin\ tcc -run File.c \\ To generate the EXE file without the .obj file
c:\tc\bin\File.exe \\ To run the EXE file
我不知道为什么
tcc -o good.exe File.obj \\ Not working. The error is 'good.exe' file not found
4条答案
按热度按时间lf5gs5x21#
如果我没记错的话,Borland/Turbo C编译器的命令行选项看起来不像gcc选项。您应该尝试
tcc /?
以获得命令行帮助。1wnzp6jl2#
所以,我认为你应该输入:
tcc hello.c
用于C程序,tcc -P hello.cpp
用于C++程序。9lowa7mx3#
我认为这些事情必须起作用:
我不知道为什么
我不认为我们可以在
tcc
命令行提示符上为 .exe 文件命名,但在GCC中可以。我对TCC了解不多。如果我找到了,我会告诉你的!看看这些 * Tiny C Compiler Reference Documentation *。这是我在Google上找到的。谷歌会让你更强大,所以当你不知道的时候,继续谷歌。
kxkpmulp4#
关于法尔肯教授的回答
tcc file.c
<--将在C中编译tcc file.cpp
<--将在cpp中编译tcc file.ext,其中.ext是cpp以外的任何内容,将在C中编译除非使用--P,然后使用cpp来编译它,在这种情况下使用.cpp,即使扩展名是.c
我正在VM中运行TCC,无法从此处复制/粘贴。但是你的测试应该和我的测试结果一样,如果不是,那么也许我错了,但是你可以自己测试一下,给定这个代码在C中工作而不是CPP,以及在CPP中工作而不是C。然后,您可以尝试更改扩展名,并使用-P或不使用。
以下代码仅适用于C语言
conly.c
(一位CMaven告诉我,下面的例子在C中工作,而不是C,因为C允许void* -> T* 转换。C++不支持)
*以下代码仅适用于C++
cpponly.cpp