The path to a built single-architecture framework product. :param host_triple: The host triple (e.g., arm64-apple-ios-simulator) :param multiarch: The multiarch identifier (e.g., arm64-simulator)
(host_triple: str, multiarch: str)
| 435 | |
| 436 | |
| 437 | def framework_path(host_triple: str, multiarch: str) -> Path: |
| 438 | """The path to a built single-architecture framework product. |
| 439 | |
| 440 | :param host_triple: The host triple (e.g., arm64-apple-ios-simulator) |
| 441 | :param multiarch: The multiarch identifier (e.g., arm64-simulator) |
| 442 | """ |
| 443 | return ( |
| 444 | CROSS_BUILD_DIR |
| 445 | / f"{host_triple}/Platforms/Apple/iOS/Frameworks/{multiarch}" |
| 446 | ) |
| 447 | |
| 448 | |
| 449 | def package_version(prefix_path: Path) -> str: |
no outgoing calls
no test coverage detected
searching dependent graphs…