()
| 5881 | } |
| 5882 | |
| 5883 | fn aot_target_specs() -> &'static [AotTargetSpec] { |
| 5884 | &[ |
| 5885 | AotTargetSpec { |
| 5886 | triple: "aarch64-apple-darwin", |
| 5887 | runner_os: "macos-15", |
| 5888 | package: "pglite-oxide-aot-aarch64-apple-darwin", |
| 5889 | llvm_url: "https://github.com/wasmerio/llvm-custom-builds/releases/download/22.x/llvm-darwin-aarch64.tar.xz", |
| 5890 | }, |
| 5891 | AotTargetSpec { |
| 5892 | triple: "x86_64-unknown-linux-gnu", |
| 5893 | runner_os: "ubuntu-latest", |
| 5894 | package: "pglite-oxide-aot-x86_64-unknown-linux-gnu", |
| 5895 | llvm_url: "https://github.com/wasmerio/llvm-custom-builds/releases/download/22.x/llvm-linux-amd64.tar.xz", |
| 5896 | }, |
| 5897 | AotTargetSpec { |
| 5898 | triple: "aarch64-unknown-linux-gnu", |
| 5899 | runner_os: "ubuntu-24.04-arm", |
| 5900 | package: "pglite-oxide-aot-aarch64-unknown-linux-gnu", |
| 5901 | llvm_url: "https://github.com/wasmerio/llvm-custom-builds/releases/download/22.x/llvm-linux-aarch64.tar.xz", |
| 5902 | }, |
| 5903 | AotTargetSpec { |
| 5904 | triple: "x86_64-pc-windows-msvc", |
| 5905 | runner_os: "windows-latest", |
| 5906 | package: "pglite-oxide-aot-x86_64-pc-windows-msvc", |
| 5907 | llvm_url: "https://github.com/wasmerio/llvm-custom-builds/releases/download/22.x/llvm-windows-amd64.tar.xz", |
| 5908 | }, |
| 5909 | ] |
| 5910 | } |
| 5911 | |
| 5912 | fn supported_aot_targets() -> Vec<&'static str> { |
| 5913 | aot_target_specs().iter().map(|spec| spec.triple).collect() |
no outgoing calls
no test coverage detected