user5262
user5262

Reputation: 401

libc++, Clang and LLVM on Windows

I have installed http://sourceforge.net/projects/clangonwin/ on my Windows system. My questions are:

  1. It seems that a STD library is missing. How do I install one?
  2. How can I integrate this in VC++, Eclipse, CodeLite, or Code::Blocks?

Upvotes: 17

Views: 4695

Answers (1)

Hans Passant
Hans Passant

Reputation: 942518

Quote from the project page:

if you want to compile C + + and uses the Microsoft C + + STL, please use the CL diver modes, namely: - dirver-mode = cl and disable RTTI;".

That answers your question. Best to interpret its accuracy for the way it reads, the unintentional hint of death by drowning is in fact appropriate. This page gives a very decent insight what more work needs to be done before it is close to usable.

Upvotes: 3

Related Questions