toaruos/util/compiler

10 lines
144 B
Plaintext
Raw Normal View History

#!/bin/bash
if [[ -n `which clang` ]] ; then
echo "clang -fcolor-diagnostics"
elif [[ -n `which gcc` ]] ; then
echo "gcc"
else
echo "cc"
fi