致命错误:#include_next <wchar.h>找不到'wchar.h'文件。 Visual Studio代码错误

时间:2019-10-25 20:34:16

标签: c++ visual-studio-code compiler-errors clang

我的IDE Clion上运行的程序在VSC中不断出现错误。我现在尝试构建一个简单的程序,但它仍然会导致错误。使用Mac。

error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/wchar.h:119:15: fatal error: 

  'wchar.h' file not found
 #include_next <wchar.h>

 1 error generated.
 The terminal process terminated with exit code: 1

代码hello.cpp

#include <iostream>

using namespace std;
int main()
{
    cout << "Please enter your name: ";
string name;
    cin >> name;
    cout << "Hello, " << name;
    cout << "\n";
return 0;
}

这没有建立。但是可执行文件hello可以按预期工作。当我尝试使用clang进行构建时,将引发此错误。 当我尝试在终端中使用命令g++ hello.cpp时,出现此错误:

ld: can't write output file: a.out for architecture x86_64

c语:

error: linker command failed with exit code 1 (use -v to see invocation)

0 个答案:

没有答案