[libcxx-commits] [PATCH] D99378: [SystemZ][z/OS] exclude nasty_macros.h from check-cxx
Zibi Sarbino via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Mar 26 08:08:59 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4d478121f3bf: [SystemZ][z/OS] exclude nasty_macros.h from check-cxx (authored by zibi).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D99378/new/
https://reviews.llvm.org/D99378
Files:
libcxx/utils/libcxx/test/config.py
libcxx/utils/libcxx/test/target_info.py
Index: libcxx/utils/libcxx/test/target_info.py
===================================================================
--- libcxx/utils/libcxx/test/target_info.py
+++ libcxx/utils/libcxx/test/target_info.py
@@ -24,6 +24,9 @@
def is_windows(self):
return False
+ def is_zos(self):
+ return False
+
def is_mingw(self):
return False
@@ -135,6 +138,13 @@
def is_windows(self):
return True
+class ZOSLocalTI(DefaultTargetInfo):
+ def __init__(self, full_config):
+ super(ZOSLocalTI, self).__init__(full_config)
+
+ def is_zos(self):
+ return True
+
class MingwLocalTI(WindowsLocalTI):
def __init__(self, full_config):
super(MingwLocalTI, self).__init__(full_config)
@@ -157,4 +167,5 @@
if target_system == 'NetBSD': return NetBSDLocalTI(full_config)
if target_system == 'Linux': return LinuxLocalTI(full_config)
if target_system == 'Windows': return WindowsLocalTI(full_config)
+ if target_system == 'OS/390': return ZOSLocalTI(full_config)
return DefaultTargetInfo(full_config)
Index: libcxx/utils/libcxx/test/config.py
===================================================================
--- libcxx/utils/libcxx/test/config.py
+++ libcxx/utils/libcxx/test/config.py
@@ -336,7 +336,8 @@
support_path = os.path.join(self.libcxx_src_root, 'test', 'support')
self.configure_config_site_header()
if self.cxx_stdlib_under_test != 'libstdc++' and \
- not self.target_info.is_windows():
+ not self.target_info.is_windows() and \
+ not self.target_info.is_zos():
self.cxx.compile_flags += [
'-include', os.path.join(support_path, 'nasty_macros.h')]
if self.cxx_stdlib_under_test == 'msvc':
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D99378.333557.patch
Type: text/x-patch
Size: 1789 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210326/446b867d/attachment.bin>
More information about the libcxx-commits
mailing list