Skip to content

Instantly share code, notes, and snippets.

View cat658011's full-sized avatar

Cat65801 cat658011

View GitHub Profile
@cat658011
cat658011 / setup-toolchain.sh
Created June 15, 2024 17:37
Neutron clang setuper
#!/bin/bash
set -e
if [ ! -e toolchain ]; then
echo 'mkdir toolchain'
mkdir toolchain
elif [ ! -d toolchain ]; then
echo '$(pwd)/toolchain is not a directory'
exit 1
fi
echo 'Setting up toolchain in $(pwd)/toolchain'