mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 20:34:17 +08:00
11 lines
241 B
Bash
Executable File
11 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
./cook.sh libstd unfetch
|
|
./cook.sh libstd fetch
|
|
./cook.sh libstd build
|
|
cp recipes/libstd/build/target/x86_64-unknown-redox/debug/deps/*.rlib ~/.xargo/lib/rustlib/x86_64-unknown-redox/lib/
|
|
|
|
echo "cook.sh is ready to use"
|