使用 VS 代码运行 C/C++ 代码总是抛出“在 0.123 秒内以代码=1 退出”

我正在尝试将 VScode 设置为能够使用 Code Runner 包为 C 和 C++ 代码设置“Code Runner”包,但它总是会出错:

[Running] cd "d:\Desktop\Programming\For_fun\tester\" && g++ practice.cpp -o practice && "d:\Desktop\Programming\For_fun\tester\"practice

[Done] exited with code=1 in 0.123 seconds

我发现使用 wsl 和 ubuntu 进行编译和运行是可行的,但常规的命令提示符则不行。我认为这是问题所在的一个重要指标,但我不知道如何解决它,甚至不知道如何开始使用谷歌搜索。

我使用的是 Windows 10

这是我的代码:

#include <vector>
#include <iostream>
#include <string>
using namespace std;

int main() {
  cout << "Hello World!\n";
  return 0;
}

这是我尝试确认是否安装了相关软件包的结果:

PS D:\Desktop\Programming\For_fun\tester> c++ --version
c++.exe (MinGW.org GCC Build-20200227-1) 9.2.0
Copyright (C) 2019 Free Software Foundation,Inc.
warranty; not even for MERCHANTABILITY or fitness FOR A PARTICULAR PURPOSE.

PS D:\Desktop\Programming\For_fun\tester> gcc --version
gcc.exe (Rev5,Built by MSYS2 project) 10.3.0
Copyright (C) 2020 Free Software Foundation,Inc.

PS D:\Desktop\Programming\For_fun\tester> g++ --version
g++.exe (MinGW.org GCC Build-20200227-1) 9.2.0
Copyright (C) 2019 Free Software Foundation,Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or fitness FOR A PARTICULAR PURPOSE.
warranty; not even for MERCHANTABILITY or fitness FOR A PARTICULAR PURPOSE.

谢谢!

jingyangliwei 回答:使用 VS 代码运行 C/C++ 代码总是抛出“在 0.123 秒内以代码=1 退出”

它不起作用。但我解决了这个问题:基本上,我使用 windows finder 来查找 gcc.exe 的所有实例,并删除了我的程序文件中包含它们的文件夹。然后我从我的环境变量中删除了它们的路径。最后,我通过 cygwin 干净地重新安装了 gcc-core 和 gcc-g++,并且成功了

本文链接:https://www.f2er.com/3148.html

大家都在问