2023-12-20 18:18:01 +00:00
|
|
|
#!/bin/sh
|
2023-12-23 17:19:18 +00:00
|
|
|
mu_repo="https://git.macaw.me/8nl/micro-utils"
|
|
|
|
ml_repo="git://git.musl-libc.org/musl"
|
|
|
|
cc_repo="git://repo.or.cz/tinycc.git"
|
2023-12-20 18:18:01 +00:00
|
|
|
|
2023-12-26 10:36:10 +00:00
|
|
|
echo "* Download micro-utils sources..." >&2
|
2023-12-20 18:18:01 +00:00
|
|
|
git clone $mu_repo src
|
|
|
|
|
2023-12-26 10:36:10 +00:00
|
|
|
echo "* Download musl sources..." >&2
|
2023-12-20 18:18:01 +00:00
|
|
|
git clone $ml_repo libc
|
|
|
|
|
2023-12-26 10:36:10 +00:00
|
|
|
echo "* Download tcc sources..." >&2
|
2023-12-20 18:18:01 +00:00
|
|
|
git clone $cc_repo tcc
|