majnemer added inline comments.

================
Comment at: include/__config:234-235
+// a MS compatibility version is specified.
 #  ifndef __MINGW32__
-#    define _LIBCPP_MSVCRT // Using Microsoft's C Runtime library
+#    ifdef _MSC_VER
+#      define _LIBCPP_MSVCRT // Using Microsoft's C Runtime library
----------------
compnerd wrote:
> smeenai wrote:
> > You can combine this into just
> > 
> > ```
> > #  if defined(_MSC_VER) && !defined(__MINGW32__)
> > ```
> > 
> > I don't know if `__MINGW32__` and `_MSC_VER` will ever be compiled 
> > simultaneously. (clang never defines `_MSC_VER` for its MinGW triples, for 
> > example.)
> What if MinGW is built with clang/c2 and MSVC extensions?  I think that the 
> two could be defined together.  What about cygwin and clang/c2?  I guess we 
> can ignore that since cygwin is not under active development.
> 
> I think this really goes back to my idea for an additional flag to indicate 
> the C library in use.  We can interpret it from the canonicalized triple that 
> LLVM/clang use.
clang/c2 is dead.


https://reviews.llvm.org/D34588



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to