WindowsのコマンドプロンプトからCコードをコンパイルしたい。環境変数をPATHに追加し、.csファイルを次のようにコンパイルできます:csc app.cs
それは問題ありませんが、app.cをコンパイルするにはどうすればよいですか?
これをして:
cl app.c
Visual Studio 2005の環境の設定を含む完全なトランスクリプトは次のとおりです(Visual Studio 2008の場合は「8」を「9.0」に変更)。
C:\src\tests>"\Program Files (x86)\Microsoft Visual Studio 8\vc\bin\vcvars32.bat"
Setting environment for using Microsoft Visual Studio 2005 x86 tools.
C:\src\tests>type app.c
#include <stdio.h>
int main(void)
{
printf("Hello world!\n");
return 0;
}
C:\src\tests>cl app.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.762 for 80x86
Copyright (C) Microsoft Corporation. All rights reserved.
app.c
Microsoft (R) Incremental Linker Version 8.00.50727.762
Copyright (C) Microsoft Corporation. All rights reserved.
/out:app.exe
app.obj
C:\src\tests>app
Hello world!
path c:\tc\bin
tcc filename.c
filename
MinGW は、Windows向けの一般的なコマンドラインGCCコンパイラを提供します。