Original patch by Gao Yunzhong!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@227593
91177308-0d34-0410-b5e6-
96231b3b80d8
// MSVC has C++ headers in same directory as C headers.
// REQUIRES: non-ms-sdk
+// REQUIRES: non-ps4-sdk
if not re.match(r'.*-win32$', config.target_triple):
config.available_features.add('non-ms-sdk')
+# Not set on native PS4 environment.
+if '*-scei-ps4' != config.target_triple:
+ config.available_features.add('non-ps4-sdk')
+
# [PR8833] LLP64-incompatible tests
if not re.match(r'^x86_64.*-(win32|mingw32|windows-gnu)$', config.target_triple):
config.available_features.add('LP64')