此问题在此处已有答案:
simple "Hello World" program giving Segmentation Fault in VS code(3个答案)
18天前关门了。
按照VS Code说明安装gcc,g++:https://code.visualstudio.com/docs/cpp/config-mingw
g++ -c -Wall -pedantic hw.cpp
g++ hw.o -o hw
./hw
字符串
结束的时候没有任何东西在控制台。
gdb ./hw
run
backtrace
型
使用gdb:
[New Thread 2664.0x530]
[New Thread 2664.0xe9c]
[New Thread 2664.0x2d80]
Thread 1 received signal SIGSEGV, Segmentation fault.
0x00007fff76446326 in ?? () from C:\Program Files\gnuplot\bin\libstdc++-6.dll
(gdb) backtrace
#0 0x00007fff76446326 in ?? () from C:\Program Files\gnuplot\bin\libstdc++-6.dll
#1 0x00007fff764c4759 in ?? () from C:\Program Files\gnuplot\bin\libstdc++-6.dll
#2 0x00007fff764d3187 in ?? () from C:\Program Files\gnuplot\bin\libstdc++-6.dll
#3 0x00007ff6eb141476 in main () at hw.cpp:4
型
hw.cpp
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
型
检查gcc是否工作。下面的代码已经编译并运行gcc并成功打印出来。
helloworld.c
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
型
我怀疑库没有正确安装。如何修复?
1条答案
按热度按时间sbdsn5lh1#
根据gdb显示的
C:\Program Files\gnuplot\bin\libstdc++-6.dll
,你在PATH
环境变量中首先列出了gnuplot路径,这会导致你的msys2
应用程序使用错误的libstdc++.dll
。你需要添加路径到下面的
g++.exe
编译器文件夹到你的PATH
环境变量的开头.字符串
或者如果您使用通用CRT。
型
这样,应用程序将首先加载msys2
libstdc++.dll
。