(target: &str)
| 5975 | } |
| 5976 | |
| 5977 | fn ensure_supported_aot_target(target: &str) -> Result<()> { |
| 5978 | if aot_target_specs().iter().any(|spec| spec.triple == target) { |
| 5979 | return Ok(()); |
| 5980 | } |
| 5981 | bail!( |
| 5982 | "unsupported AOT target {target}; supported targets are {}", |
| 5983 | supported_aot_targets().join(", ") |
| 5984 | ) |
| 5985 | } |
| 5986 | |
| 5987 | fn verify_generated_extension_surface() -> Result<()> { |
| 5988 | let manifest_path = Path::new(GENERATED_ASSETS_DIR).join("manifest.json"); |
no test coverage detected