MCPcopy Index your code
hub / github.com/nodejs/node / _XcodePlatformPath

Method _XcodePlatformPath

tools/gyp/pylib/gyp/xcode_emulation.py:531–538  ·  view source on GitHub ↗
(self, configname=None)

Source from the content-addressed store, hash-verified

529 return self.GetPerConfigSetting("SDKROOT", configname, default="")
530
531 def _XcodePlatformPath(self, configname=None):
532 sdk_root = self._SdkRoot(configname)
533 if sdk_root not in XcodeSettings._platform_path_cache:
534 platform_path = self._GetSdkVersionInfoItem(
535 sdk_root, "--show-sdk-platform-path"
536 )
537 XcodeSettings._platform_path_cache[sdk_root] = platform_path
538 return XcodeSettings._platform_path_cache[sdk_root]
539
540 def _SdkPath(self, configname=None):
541 sdk_root = self._SdkRoot(configname)

Callers 3

GetCflagsMethod · 0.95
GetLdflagsMethod · 0.95
_GetIOSPostbuildsMethod · 0.95

Calls 2

_SdkRootMethod · 0.95

Tested by

no test coverage detected