Returns the architectures this target should be built for.
(self, configname)
| 504 | return self._GetStandaloneBinaryPath() |
| 505 | |
| 506 | def GetActiveArchs(self, configname): |
| 507 | """Returns the architectures this target should be built for.""" |
| 508 | config_settings = self.xcode_settings[configname] |
| 509 | xcode_archs_default = GetXcodeArchsDefault() |
| 510 | return xcode_archs_default.ActiveArchs( |
| 511 | config_settings.get("ARCHS"), |
| 512 | config_settings.get("VALID_ARCHS"), |
| 513 | config_settings.get("SDKROOT"), |
| 514 | ) |
| 515 | |
| 516 | def _GetSdkVersionInfoItem(self, sdk, infoitem): |
| 517 | # xcodebuild requires Xcode and can't run on Command Line Tools-only |
no test coverage detected