()
| 9695 | } |
| 9696 | |
| 9697 | fn host_target_triple() -> &'static str { |
| 9698 | #[cfg(all(target_os = "macos", target_arch = "aarch64"))] |
| 9699 | { |
| 9700 | return "aarch64-apple-darwin"; |
| 9701 | } |
| 9702 | #[cfg(all(target_os = "linux", target_arch = "x86_64"))] |
| 9703 | { |
| 9704 | return "x86_64-unknown-linux-gnu"; |
| 9705 | } |
| 9706 | #[cfg(all(target_os = "linux", target_arch = "aarch64"))] |
| 9707 | { |
| 9708 | return "aarch64-unknown-linux-gnu"; |
| 9709 | } |
| 9710 | #[cfg(all(target_os = "windows", target_arch = "x86_64"))] |
| 9711 | { |
| 9712 | return "x86_64-pc-windows-msvc"; |
| 9713 | } |
| 9714 | #[allow(unreachable_code)] |
| 9715 | "unsupported" |
| 9716 | } |
| 9717 | |
| 9718 | fn source_by_name<'a>(manifest: &'a SourcesManifest, name: &str) -> Result<&'a SourcePin> { |
| 9719 | manifest |
no outgoing calls
no test coverage detected