所以我正在尝试在Sublime Text 3上构建一个C ++程序,但我不断遇到各种各样的问题。我已经尝试了很多视频和网络教程,并且都让我失望,所以请不要推荐我。这就是我所做的:
我正在构建文件CPP.sublime-build
:
{
"cmd":["bash", "-c", "g++ -std=c++14 -Wall '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"variants":
[
{
"name": "Run",
"cmd":["bash", "-c", "g++ -std=c++14 '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"]
}
]
}
我安装了MinGW,并编辑了我的环境PATH变量以包含C:\MinGW\bin
。
我在目录HelloWorld.cpp
下面有C:\Users\kevin\Desktop\C++
:
#include <iostream>
#include <string>
int main(){
std::cout << "Hello World!" << std::endl;
std::cout << "Hello World!" << std::endl;
std::cout << "Hello World!" << std::endl;
std::cout << "Hello World!" << std::endl;
return 0;
}
但是,当我尝试在Sublime Text中构建此文件(Ctrl-B)时,我收到这个长错误:
[WinError 2] The system cannot find the file specified
[cmd: ['bash', '-c', "g++ -std=c++ -Wall 'C:\\Users\\kevin\\Desktop\\C++\\HelloWorld.cpp' -o 'C:\\Users\\kevin\\Desktop\\C++/HelloWorld' && 'C:\\Users\\kevin\\Desktop\\C++/HelloWorld'"]]
[dir: C:\Users\kevin\Desktop\C++]
[path: C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Bitvise SSH Client;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files\Java\jdk1.8.0_121\bin;C:\Program Files (x86)\Skype\Phone\;C:\MinGW\bin;C:\Users\kevin\AppData\Local\Microsoft\WindowsApps;]
[Finished]
使用内置C++ Single File
进行构建会产生另一个错误:
Access is denied.
[Finished in 2.6s with exit code 1]
其他详细信息:运行基于x64的PC的Windows 10。
有什么想法吗?
编辑:不要推荐我Visual Studio-它可以工作,但我是一个极简主义者并且讨厌它。