summaryrefslogtreecommitdiff
path: root/environment
blob: 4952a08eb284e48964def66126d2ffd4b5a31926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

bin_available() {
	hash "$1" 2>/dev/null
}

export GPG_TTY=$(tty)
export EDITOR=/usr/bin/vim
export ORIG_PATH="$PATH"
export PATH="/opt/sbase/bin/:$PATH"

if bin_available clang; then
	export CC=clang
	export CXX=clang++
elif bin_available gcc ; then
	export CC=gcc
	export CXX=g++
elif bin_available tcc ; then
	export CC=tcc
fi

# Do separate paths on '/' for word operations like ^W
WORDCHARS=${WORDCHARS/\//}

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