(self, target_arch)
| 150 | return [vcvarsall, arg] |
| 151 | |
| 152 | def SetupScript(self, target_arch): |
| 153 | script_data = self._SetupScriptInternal(target_arch) |
| 154 | script_path = script_data[0] |
| 155 | if not os.path.exists(script_path): |
| 156 | raise Exception( |
| 157 | "%s is missing - make sure VC++ tools are installed." % script_path |
| 158 | ) |
| 159 | return script_data |
| 160 | |
| 161 | |
| 162 | def _RegistryQueryBase(sysdir, key, value): |
no test coverage detected