Cannot find compiler 'cl.exe' in PATH
Cannot find compiler 'cl.exe' in PATH
問題
VisualStudio2017をインストールして、C++環境もいれたはずなのにclのパスが通ってないよっていうエラーがでた。
エラー文
Cannot find compiler 'cl.exe' in PATH
解決策
前提
C/C++ コンパイラ (cl.exe) をVisualStudio Installer でC++によるデスクトップ開発からインストール済み
CLとは
Microsoft Visual C++のコンパイラ本体
場所
エクスプローラを開いて下記のパスをみると、
C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\Hostx64\x64
こんなかんじのやつがいる。
こいつが目的のcl.exe
である。x86が32bitで、x64が64bit用である。
パスを通す
コントロール パネル->システムとセキュリティ->システムと開く。
次にシステムの詳細設定->環境変数と開く。
システム環境変数->Pathを選択し、編集で開く。
新規追加で、パスをいれたらOKを押して終了。
確認
コマンドプロンプトを再起動して、cl
とうって下記のものが出ればOK。
>cl
Microsoft(R) C/C++ Optimizing Compiler Version 19.16.27025.1 for x64
Copyright (C) Microsoft Corporation. All rights reserved.
使い方: cl [ オプション... ] ファイル名... [ /link リンク オプション... ]
参考
Author And Source
この問題について(Cannot find compiler 'cl.exe' in PATH), 我々は、より多くの情報をここで見つけました https://qiita.com/sikeda107/items/93312325f120d0b49653著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .