You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[[ -r ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
echo ".bashrc loaded"
|
|
|
|
|
|
|
|
# Store private information (exports, keys, etc) in .bash_private.
|
|
|
|
[[ -r ~/.bash_private ]] && . ~/.bash_private
|
|
|
|
echo ".bash_private loaded"
|
|
|
|
|
|
|
|
export CC=$(which clang)
|
|
|
|
export CXX=$(which clang++)
|
|
|
|
export OPENSSL_ROOT_DIR=$(which openssl)
|
|
|
|
|
|
|
|
alias python='python3'
|
|
|
|
|
|
|
|
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi
|
|
|
|
|