(self, configname=None)
| 538 | return XcodeSettings._platform_path_cache[sdk_root] |
| 539 | |
| 540 | def _SdkPath(self, configname=None): |
| 541 | sdk_root = self._SdkRoot(configname) |
| 542 | if sdk_root.startswith("/"): |
| 543 | return sdk_root |
| 544 | return self._XcodeSdkPath(sdk_root) |
| 545 | |
| 546 | def _XcodeSdkPath(self, sdk_root): |
| 547 | if sdk_root not in XcodeSettings._sdk_path_cache: |
no test coverage detected