summaryrefslogtreecommitdiff
path: root/environment
blob: 1ae64babed1edebc477154165271737415e83a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export GPG_TTY=$(tty)
export EDITOR=/usr/bin/vim

if $(which clang 2>/dev/null); then
	export CC=clang
	export CXX=clang
elif [[ $(which tcc 2>/dev/null) && !$(which gcc 2>/dev/null) ]]; then
	export CC=tcc
fi

# u=rwx,g=,o=
umask 077