質問内容
私はwindowsのPCでVisual Studio Codeを使いC言語を勉強したいと思い、インストール等したのですが、コードの実行が出来なくて悩んでいます。良かったら回答してください。
MinGWをインストールした後、環境変数のPathにC:\MinGW\binを作りました。その後、Visual Studio Codeをインストールし、Visual Studio Code内の拡張機能で"C/C++"と"Code Runner"をインストールしました。
実行できるか、試しにHello Worldと表示されるコードを"helloworld.c"というファイルに作りました。
###ソースコード
C言語
1#include <stdio.h> 2 3int main(void){ 4 printf("Hello World"); 5 return 0; 6}
この際に統合ターミナルでgcc helloworld.cと打ったら以下のメッセージが発生しました。
発生したメッセージ
PS C:\Users\●●●\Desktop\C\> gcc helloworld.c gcc.exe: fatal error: cannot execute 'as': CreateProcess: No such file or directory compilation terminated.
また、"デバッグの開始"、"デバッグなしで実行"のどちらを選んでも、
launch:program" does not exist.というメッセージが書かれ、下に"launch.jsonを開く"か"キャンセル"の二択のポップアップが出てきました。
また、Run Codeのボタン(Ctrl+Alt+N)を押すと、以下のようなメッセージが出てきました。
発生したメッセージ
[Running] cd "c:\Users\●●●\Desktop\C\" && gcc helloworld.c -o helloworld && "c:\Users\●●●\Desktop\C\"helloworld gcc: fatal error: cannot execute 'as': CreateProcess: No such file or directory compilation terminated. [Done] exited with code=1 in 0.124 secondss
色々なサイトで調べてみたのですが、どうすれば自分の状況を解決できるかわからないで、一週間ほど経ちました。
解決策が分かる方がいらっしゃったら、回答してもらえると嬉しいです。
###追記
Pathが通っている事までは確認できました。しかし、gccのコンパイルをすると、fatal error: cannot execute 'as': CreateProcess: No such file or directory compilation terminated.
となり、コンパイルする事はできませんでした。
回答1件
あなたの回答
tips
プレビュー