hello world C++由Windows MSYS2编译g++ segfault可能是由于缺少标准库[重复]

6bc51xsx  于 2023-11-21  发布在  Windows
关注(0)|答案(1)|浏览(167)

此问题在此处已有答案

simple "Hello World" program giving Segmentation Fault in VS code(3个答案)
18天前关门了。
按照VS Code说明安装gcc,g++:https://code.visualstudio.com/docs/cpp/config-mingw

  1. g++ -c -Wall -pedantic hw.cpp
  2. g++ hw.o -o hw
  3. ./hw

字符串
结束的时候没有任何东西在控制台。

  1. gdb ./hw
  2. run
  3. backtrace


使用gdb:

  1. [New Thread 2664.0x530]
  2. [New Thread 2664.0xe9c]
  3. [New Thread 2664.0x2d80]
  4. Thread 1 received signal SIGSEGV, Segmentation fault.
  5. 0x00007fff76446326 in ?? () from C:\Program Files\gnuplot\bin\libstdc++-6.dll
  6. (gdb) backtrace
  7. #0 0x00007fff76446326 in ?? () from C:\Program Files\gnuplot\bin\libstdc++-6.dll
  8. #1 0x00007fff764c4759 in ?? () from C:\Program Files\gnuplot\bin\libstdc++-6.dll
  9. #2 0x00007fff764d3187 in ?? () from C:\Program Files\gnuplot\bin\libstdc++-6.dll
  10. #3 0x00007ff6eb141476 in main () at hw.cpp:4


hw.cpp

  1. #include <iostream>
  2. int main() {
  3. std::cout << "Hello World!";
  4. return 0;
  5. }


检查gcc是否工作。下面的代码已经编译并运行gcc并成功打印出来。
helloworld.c

  1. #include <stdio.h>
  2. int main() {
  3. printf("Hello, World!");
  4. return 0;
  5. }


我怀疑库没有正确安装。如何修复?

sbdsn5lh

sbdsn5lh1#

根据gdb显示的C:\Program Files\gnuplot\bin\libstdc++-6.dll,你在PATH环境变量中首先列出了gnuplot路径,这会导致你的msys2应用程序使用错误的libstdc++.dll
你需要添加路径到下面的g++.exe编译器文件夹到你的PATH环境变量的开头.

  1. C:\msys64\mingw64\bin

字符串
或者如果您使用通用CRT。

  1. C:\msys64\ucrt64\bin


这样,应用程序将首先加载msys2 libstdc++.dll

相关问题