(self)
| 1348 | return None |
| 1349 | |
| 1350 | def __init__(self): |
| 1351 | tcsdsroot = self.get_tcsds_rootdir() |
| 1352 | if tcsdsroot is None: |
| 1353 | system_info.__init__(self) |
| 1354 | else: |
| 1355 | system_info.__init__( |
| 1356 | self, |
| 1357 | default_lib_dirs=[os.path.join(tcsdsroot, 'lib64')], |
| 1358 | default_include_dirs=[os.path.join(tcsdsroot, |
| 1359 | 'clang-comp/include')]) |
| 1360 | |
| 1361 | def calc_info(self): |
| 1362 | tcsdsroot = self.get_tcsds_rootdir() |
nothing calls this directly
no test coverage detected