diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-02-23 16:54:28 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-02-23 16:54:28 -0800 |
| commit | bab271f5ae060734de7e95107baf5191e46fc90d (patch) | |
| tree | 64953b1e5f6329eeb1d2e1b97823f0feeb6102a1 /setup.sh | |
| parent | 49b4ddfca0b514cd4b4655a82a261187defd91d6 (diff) | |
add musl and vi
Diffstat (limited to 'setup.sh')
| -rwxr-xr-x | setup.sh | 19 |
1 files changed, 16 insertions, 3 deletions
@@ -19,11 +19,18 @@ fi cd tree/src -if confirm "Build and use tcc?"; then +if confirm "Build and use musl (WIP)?"; then + cd musl + ./setup.sh + cd .. + # export CC=${HOME}/.local/musl/bin/musl-gcc + # ln -sf ${HOME}/.local/musl/bin/musl-gcc ${HOME}/.local/bin/cc +fi + +if confirm "Build tcc?"; then cd tcc ./setup.sh cd .. - export CC=${HOME}/.local/bin/tcc fi if confirm "Build micro haskell?"; then @@ -38,7 +45,7 @@ if confirm "Build chicken scheme?"; then cd .. fi -if confirm "Build dwm/st/slstatus/dmenu/unclutter?"; then +if confirm "Build dwm/dmenu/st/slstatus/dmenu?"; then cd dwm ./setup.sh cd .. @@ -62,6 +69,12 @@ if confirm "Build non-local tools (caps2esc) for openrc?"; then cd .. fi +if confirm "Build vi?"; then + cd vi + ./setup.sh + cd .. +fi + if confirm "Build Emacs?"; then cd emacs ./setup.sh |
