[libc++] Respect Windows Store app CRT restrictions
authorShoaib Meenai <smeenai@fb.com>
Thu, 6 Apr 2017 04:47:49 +0000 (04:47 +0000)
committerShoaib Meenai <smeenai@fb.com>
Thu, 6 Apr 2017 04:47:49 +0000 (04:47 +0000)
Some CRT APIs are unavailable for Windows Store apps [1]. Detect when
we're targeting the Windows Store and don't try to refer to non-existent
CRT functions in that case. (This would otherwise lead to a compile
error when using the libc++ headers and compiling for Windows Store.)

[1] https://docs.microsoft.com/en-us/cpp/cppcx/crt-functions-not-supported-in-universal-windows-platform-apps

Differential Revision: https://reviews.llvm.org/D31737

llvm-svn: 299625

libcxx/include/__config
libcxx/include/cstdlib

index 519941484e3a704438a0906c6a668217a9fe93b7..aab774dafe3ef8beee39132de5a6ab939b4d7e15 100644 (file)
 # if defined(_LIBCPP_MSVCRT)
 #   define _LIBCPP_HAS_QUICK_EXIT
 # endif
+
+// Some CRT APIs are unavailable to store apps
+#if defined(WINAPI_FAMILY)
+#include <winapifamily.h>
+#if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) &&                      \
+    (!defined(WINAPI_PARTITION_SYSTEM) ||                                      \
+     !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_SYSTEM))
+#define _LIBCPP_WINDOWS_STORE_APP
+#endif
+#endif
 #endif // defined(_WIN32)
 
 #ifdef __sun__
index 2ca25ed56ca620d993e1532e85ebef0a771fceaf..78c428403c37b909c9f252b4993461d092380ed8 100644 (file)
@@ -130,8 +130,10 @@ using ::abort;
 using ::atexit;
 using ::exit;
 using ::_Exit;
+#ifndef _LIBCPP_WINDOWS_STORE_APP
 using ::getenv;
 using ::system;
+#endif
 using ::bsearch;
 using ::qsort;
 using ::abs;