aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2016-03-15 10:17:37 +0100
committerMiquel Sabaté Solà <msabate@suse.com>2016-03-15 10:17:37 +0100
commit4254f85dfafed560a3472e6698a7bb6189102af8 (patch)
treef465c2d817a617adfd7fc4688294a25f0305e7de
parentd6a75f8366226ba4d70432ab30c320788170ef78 (diff)
downloaddotfiles-4254f85dfafed560a3472e6698a7bb6189102af8.tar.gz
dotfiles-4254f85dfafed560a3472e6698a7bb6189102af8.zip
bashrc: updated
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
-rw-r--r--bashrc10
1 files changed, 3 insertions, 7 deletions
diff --git a/bashrc b/bashrc
index fb7d25c..f104420 100644
--- a/bashrc
+++ b/bashrc
@@ -75,11 +75,9 @@ alias frameworks='source $KF5_SRC/kf5.sh; eval `dbus-launch`; kdeinit5; echo'
# Alias bundle exec
alias be='bundle exec'
-# Set the CC and CXX variables to clang, but allow a fallback shortcut, since
-# some projects do not support clang yet (e.g. HHVM).
-alias GCC='CC=/usr/bin/gcc CXX=/usr/bin/g++'
-export CC=/usr/bin/clang
-export CXX=/usr/bin/clang++
+# After experimenting with GCC & Clang, I'm sticking with GCC.
+export CC=/usr/bin/gcc
+export CXX=/usr/bin/g++
# Go things
export GOROOT_BOOTSTRAP=/opt/go1.4
@@ -125,5 +123,3 @@ export PATH="$PATH:$HOME/.rvm/bin"
# Some other misc. alias.
alias iosc="osc -A https://api.suse.de"
-alias compose="docker-compose"
-alias machine="docker-machine"