Como posso configurar uma variável de ambiente para trabalhar com o TCC?

1

Estou tentando configurar o TCC no Windows 7, mas não consigo fazer isso funcionar dinamicamente a partir do 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.

Então eu mudei minha variável de ambiente que dizia "Caminho" de:

C:\ProgramData\Oracle\Java\javapath;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\

Para:

C:\ProgramData\Oracle\Java\javapath;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\; C:\compilers\tcc\tcc.exe

Mas quando abro o cmd, ele ainda diz que "tcc" não é um comando reconhecido.

    
por Kyle Baran 24.03.2015 / 20:46

2 respostas

1

Você adicionou o local ao arquivo .exe chamado tcc.exe em seu caminho. O que você deve fazer é adicionar o local do folder contendo o arquivo tcc.exe . Então, no seu caso, a variável do caminho ambiental deve ser assim

C:\ProgramData\Oracle\Java\javapath;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\; C:\compilers\tcc

Supondo que o seu arquivo tcc.exe esteja na pasta, é C:\compilters\tcc

    
por 25.03.2015 / 17:33
1

Path command (consulte a referência de linha de comando do Windows) :

Sets the command path in the PATH environment variable, which is the set of directories used to search for executable files. Used without parameters, path displays the current command path.

Seu C:\compilers\tcc\tcc.exe não é um nome pasta (diretório) válido; supostamente, deve ser C:\compilers\tcc\ ou C:\compilers\tcc (com ou sem trailing \ barra invertida).

    
por 24.03.2015 / 23:12