Skip to content

Instantly share code, notes, and snippets.

@cat658011
cat658011 / setup-toolchain.sh
Last active December 1, 2024 22:59
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 'Download antman and sync'