Compare commits

...

7 commits

Author SHA1 Message Date
18bf3ccfa2
Update before.html
Some checks failed
Build / build (push) Has been cancelled
Build / keep-alive (push) Has been cancelled
Build / deploy (push) Has been cancelled
2025-08-17 16:17:17 +02:00
4c428c7792 f 2025-08-17 15:56:40 +02:00
3a0de9343b
Update before.html 2025-08-17 15:13:04 +02:00
f6d2c4b6c0
Update build.sh 2025-08-17 15:12:35 +02:00
72dd7bc925
Merge pull request #2 from Noratrieb/Noratrieb-patch-1
Update before.html
2025-08-17 14:56:24 +02:00
389cbffcea
Update build.sh 2025-08-17 14:56:11 +02:00
6dcff6dccc
Update before.html 2025-08-17 14:54:58 +02:00
2 changed files with 13 additions and 1 deletions

View file

@ -9,6 +9,10 @@
{ value: "x86_64-unknown-linux-gnu", name: "x86-64 GNU/Linux" },
{ value: "x86_64-pc-windows-msvc", name: "x86-64 Windows MSVC" },
{ value: "aarch64-apple-darwin", name: "ARM64 MacOS" },
{ value: "wasm32-unknown-unknown", name: "WebAssembly (32-bit) unknown-unknown" },
// { value: "wasm32-wasip1", name: "WebAssembly (32-bit) WASIp1" },
{ value: "aarch64-linux-android", name: "ARM64 Android" },
// { value: "aarch64-apple-ios", name: "ARM64 iOS" },
];
info.innerHTML = `

View file

@ -19,7 +19,15 @@ rm -f bootstrap.toml
--set rust.llvm-bitcode-linker=false \
--set build.optimized-compiler-builtins=false # necessary to make cross-doc work for all targets
targets=(x86_64-unknown-linux-gnu x86_64-pc-windows-msvc aarch64-apple-darwin)
targets=(
x86_64-unknown-linux-gnu
x86_64-pc-windows-msvc
aarch64-apple-darwin
wasm32-unknown-unknown
# wasm32-wasip1
aarch64-linux-android
# aarch64-apple-ios
)
# bootstrap uses this var to perform CI detection :(
unset CI