Last active
August 29, 2015 14:04
-
-
Save epequeno/9574c17d4f5501ab543d to your computer and use it in GitHub Desktop.
liteide-env
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# native compiler linux amd64 | |
GOROOT=$HOME/go | |
#GOBIN= | |
GOARCH=amd64 | |
GOOS=linux | |
CGO_ENABLED=1 | |
PATH=$GOROOT/bin:$PATH | |
LITEIDE_GDB=gdb | |
LITEIDE_MAKE=make | |
LITEIDE_TERM=/usr/bin/gnome-terminal | |
LITEIDE_TERMARGS= | |
LITEIDE_EXEC=/usr/bin/xterm | |
LITEIDE_EXECOPT=-e | |
.bashrc: | |
export GOROOT=$HOME/go | |
export GOBIN=$GOROOT/bin | |
export GOARCH=amd64 | |
export GOOS=linux | |
export PATH=$GOBIN:$PATH | |
export GOPATH=/home/steven/gocode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment