Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
197 views
in Technique[技术] by (71.8m points)

c++ - Clang on Windows

First of all, I've followed "Getting Started: Building and Running Clang". In particular, I've built it according to "Using Visual Studio" section. In other words, I've built it using Visual Studio 2010.

Secondly, I've manually set include and library paths to MinGW distribution:

enter image description here

The simple program I'm trying to compile:

#include <iostream>
using namespace std;

int main() {
    cout << "Hello, World!" << endl;
    return 0;
}

I get the following feedback from the compiler:

In file included from C:MinGWlibgccmingw324.5.2includec++iostream:39:
In file included from C:MinGWlibgccmingw324.5.2includec++ostream:39:
In file included from C:MinGWlibgccmingw324.5.2includec++ios:38:
In file included from C:MinGWlibgccmingw324.5.2includec++iosfwd:41:
In file included from C:MinGWlibgccmingw324.5.2includec++its/postypes.h:41:
C:MinGWlibgccmingw324.5.2includec++cwchar:144:11: error: no member named 'fgetws' in the global namespace
  using ::fgetws;
        ~~^
C:MinGWlibgccmingw324.5.2includec++cwchar:146:11: error: no member named 'fputws' in the global namespace
  using ::fputws;
        ~~^
C:MinGWlibgccmingw324.5.2includec++cwchar:150:11: error: no member named 'getwc' in the global namespace
  using ::getwc;
        ~~^
C:MinGWlibgccmingw324.5.2includec++cwchar:151:11: error: no member named 'getwchar' in the global namespace
  using ::getwchar;
        ~~^
C:MinGWlibgccmingw324.5.2includec++cwchar:156:11: error: no member named 'putwc' in the global namespace
  using ::putwc;
        ~~^
C:MinGWlibgccmingw324.5.2includec++cwchar:157:11: error: no member named 'putwchar' in the global namespace
  using ::putwchar;
        ~~^
6 errors generated.
Build error occurred, build is stopped
Time consumed: 646  ms.  

The obvious question is - why do I get this?

Additionally, I would like to know more details, and since, Clang website provides extremely brief information - I thought that somebody could clarify the following questions to me:

  1. As far as I understand Clang does not have its own standard library (stdc++ I guess, isn't it?). That's why I have to use MinGW's headers and libraries - am I right?
  2. What is the difference between building Clang with Visual Studio and MinGW?
  3. Do I have to hard-code include paths in clang/lib/Frontend/InitHeaderSearch.cpp or I can skip it and rather specify those paths later through "-I" option as I do in the screenshot above?
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

If you build Clang with MSVS, it will automatically search the default VS include paths, and pull in those headers. This is the reason the libstdc++ headers are producing errors: they are importing C functions not present in the VS headers. Using Clang for C++ with VS is for now a no-go: you will get link failures due to missing ABI (name mangling and others) functionality in Clang. If you still want to use the MSVS Clang, don't point it to MinGW headers. It will parse the VS headers (including C++), it just will fail to link.


EDIT: I have built a dw2 version of GCC (32-bit only) accompanied by Clang. Exceptions work in this build, and so you can build real C++ stuff with Clang now on Windows. Get version 3.2 here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.8k users

...