Windows 10上のWSLでC言語を開発したいです。
VScodeでC:\tempにhello.cを作成した後
同vscodeのターミナルから以下のコマンドを入力したところ
エラーが発生しました。対応方法をご教示願います。
C:\temp> gcc hello.c
gcc : 用語 'gcc' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。名前が正しく記述されていることを確認し、パスが
含まれている場合はそのパスが正しいことを確認してから、再試行してください。
発生場所 行:1 文字:1
- gcc hello.c
-
+ CategoryInfo : ObjectNotFound: (gcc:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
wsl
1myname:/mnt/c/windows/system32$ gcc --version 2gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 3Copyright (C) 2019 Free Software Foundation, Inc. 4This is free software; see the source for copying conditions. There is NO 5warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
hello.c
1#include <stdio.h> 2 3int main(void) { 4 printf("hello world.\n"); 5 return 0; 6}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。