Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GCCコンパイラを使用していますが、コンパイル後に実際に実行されるコードを作成したいと思います。これに使用できるフラグはありますか?今私はただやっています
gcc code.c
生成されているcode.exeはありません...
デフォルトで作成されるファイルは a.out と呼ばれます。code.exe という名前を付ける場合、正しい行は次のようになります。gcc -o code.exe code.c
gcc -o code.exe code.c
-oGCCによって生成された実行可能ファイルは、出力ファイルの名前を指定するオプションを使用しない限り、デフォルトでは「a.out」と呼ばれます。
-o