http://llvm.org/bugs/show_bug.cgi?id=11405

[email protected] <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|---                         |FIXED

--- Comment #9 from [email protected] <[email protected]> ---
There seem to be a few issues here:
1. hello world with iostream with MSVCRT
2. hello world with printf with MSVCRT
3. hello world with some other standard libraries

Today there are no more link errors with iostream hello world and the MSVCRT. 
There are errors about intrin.h which are outstanding, but if I hack around it
locally I can get the following to work:

$ ls intrin.h
intrin.h

$ cat hello.cpp
#include <iostream>
int main() {
  std::cout << "hello, world!" << std::endl;
}

$ clang -fmsc-version=1700 -isystem . -msse4a -D_HAS_EXCEPTIONS=0 -fno-rtti
-fno-exceptions -Xclang -cxx-abi -Xclang microsoft hello.cpp && ./a.out
hello, world!

We already have issues open about supporting Microsoft intrinsics and resolving
these issues, so I don't see a need to keep this open:
http://llvm.org/bugs/show_bug.cgi?id=13283

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to