MCPcopy Create free account
hub / github.com/f0rr0/oliphaunt / aot_target_specs

Function aot_target_specs

xtask/src/main.rs:5883–5910  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5881}
5882
5883fn 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
5912fn supported_aot_targets() -> Vec<&'static str> {
5913 aot_target_specs().iter().map(|spec| spec.triple).collect()

Callers 6

supported_aot_targetsFunction · 0.85
print_ci_artifact_namesFunction · 0.85
print_aot_ci_matrixFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected