如何设置环境变量以使用TCC?


1

我试图在Windows 7上设置TCC,但我似乎无法使它从cmd动态工作

To be able to invoke the compiler from everywhere on your computer by
just typing "tcc", please add the directory containing tcc.exe to your
system PATH.

所以我更改了我的环境变量“Path”:

C:\ ProgramData \甲骨文\爪哇\ javapath;%SYSTEMROOT%\ SYSTEM32;%SYSTEMROOT%;%SYSTEMROOT%\ System32下\ WBEM;%SYSTEMROOT%\ System32下\ WindowsPowerShell \ V1.0 \

至:

C:\ ProgramData \甲骨文\爪哇\ javapath;%SYSTEMROOT%\ SYSTEM32;%SYSTEMROOT%;%SYSTEMROOT%\ System32下\ WBEM;%SYSTEMROOT%\ System32下\ WindowsPowerShell \ V1.0 \; C:\编译\ TCC \ tcc.exe

但是当我打开cmd时,它仍然说“tcc”不是一个公认的命令。


2
你认为C:\compilers\tcc\tcc.exe是一个有效的文件夹名称?阅读路径
JosefZ 2015年

Answers:


1

您已将位置添加到tcc.exe路径中指定的.exe文件中。你应该做的是添加folder包含tcc.exe文件的位置。所以在你的情况下,环境路径变量应该是这样的

C:\ ProgramData \甲骨文\爪哇\ javapath;%SYSTEMROOT%\ SYSTEM32;%SYSTEMROOT%;%SYSTEMROOT%\ System32下\ WBEM;%SYSTEMROOT%\ System32下\ WindowsPowerShell \ V1.0 \; C:\编译\ TCC

假设你的tcc.exe文件在文件夹中C:\compilters\tcc


1

Path命令(参见windows命令行参考)

PATH环境变量中设置命令路径,该变量是 用于搜索可执行文件目录。如果不使用参数,path将显示当前命令路径。

C:\compilers\tcc\tcc.exe不是有效的文件夹(目录)名称; 据说,应该是C:\compilers\tcc\或者C:\compilers\tcc(有或没有\反斜杠)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.