[libcxx] r231777 - Enable _LIBCPP_LOCALE__L_EXTENSIONS on CloudABI.

Ed Schouten ed at 80386.nl
Tue Mar 10 02:26:40 PDT 2015


Author: ed
Date: Tue Mar 10 04:26:38 2015
New Revision: 231777

URL: http://llvm.org/viewvc/llvm-project?rev=231777&view=rev
Log:
Enable _LIBCPP_LOCALE__L_EXTENSIONS on CloudABI.

CloudABI provides the _l() functions that are part of POSIX.1-2008, but
also the extensions that are available on systems like OS X and *BSD
(scanf_l, printf_l, etc).

Modified:
    libcxx/trunk/include/__config

Modified: libcxx/trunk/include/__config
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__config?rev=231777&r1=231776&r2=231777&view=diff
==============================================================================
--- libcxx/trunk/include/__config (original)
+++ libcxx/trunk/include/__config Tue Mar 10 04:26:38 2015
@@ -642,7 +642,8 @@ template <unsigned> struct __static_asse
 #define _LIBCPP_NONUNIQUE_RTTI_BIT (1ULL << 63)
 #endif
 
-#if defined(__APPLE__) || defined(__FreeBSD__) || defined(_WIN32) || defined(__sun__) || defined(__NetBSD__)
+#if defined(__APPLE__) || defined(__FreeBSD__) || defined(_WIN32) || \
+    defined(__sun__) || defined(__NetBSD__) || defined(__CloudABI__)
 #define _LIBCPP_LOCALE__L_EXTENSIONS 1
 #endif
 





More information about the cfe-commits mailing list