(self, 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: |
| 548 | sdk_path = self._GetSdkVersionInfoItem(sdk_root, "--show-sdk-path") |
| 549 | XcodeSettings._sdk_path_cache[sdk_root] = sdk_path |
| 550 | if sdk_root: |
| 551 | XcodeSettings._sdk_root_cache[sdk_path] = sdk_root |
| 552 | return XcodeSettings._sdk_path_cache[sdk_root] |
| 553 | |
| 554 | def _AppendPlatformVersionMinFlags(self, lst): |
| 555 | self._Appendf(lst, "MACOSX_DEPLOYMENT_TARGET", "-mmacosx-version-min=%s") |
no test coverage detected