yields all combinations of arch, ilp64
()
| 285 | exist and can be opened |
| 286 | ''' |
| 287 | def items(): |
| 288 | """ yields all combinations of arch, ilp64 |
| 289 | """ |
| 290 | for plat in plats: |
| 291 | yield plat, None |
| 292 | osname, arch = plat.split("-") |
| 293 | if arch not in ('i686', '32'): |
| 294 | yield plat, '64_' |
| 295 | |
| 296 | errs = [] |
| 297 | for plat, ilp64 in items(): |