initial commit

This commit is contained in:
slonkazoid 2024-12-29 00:45:07 +03:00
commit 9224afc09e
Signed by: slonk
SSH key fingerprint: SHA256:tbZfJX4IOvZ0LGWOWu5Ijo8jfMPi78TU7x1VoEeCIjM

24
cash.sh Normal file
View file

@ -0,0 +1,24 @@
_try_cc() {
local out="$1"
shift
local infile
infile=$(mktemp --suffix .c)
cat > "$infile"
ccache hash_dir=false \
"${CC:-cc}" -o "$out" "$infile" "$@"
code=$?
rm "$infile" || :
return $?
}
cash() {
local out
out=$(mktemp)
_try_cc "$out" "$@" || {
code=$?
echo 'Error: compilation failed' >&2
rm "$out" || :
return "$code"
}
echo "$out"
}