-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_profile2
106 lines (71 loc) · 3.34 KB
/
bash_profile2
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#Bash history
# ignore duplicated and empty history entries
export HISTCONTROL=ignoreboth
# merge the history of multiple open sessions (e.g. tabs or windows)
shopt -s histappend
# After each command, save and reload history
#export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
#ALIASES
alias lisp=sbcl
alias go=open
alias ll="ls -l"
alias c++11="clang++ -std=c++11"
#Bash Prompt
# Shrink path names in prompt that are way too long
#export PROMPT_COMMAND='PS1="$(python ~/short.pwd.py)"'
#
# Include Paths
CPLUS_INCLUDE_PATH=/usr/include:~/include
export CPLUS_INCLUDE_PATH
C_INCLUDE_PATH=/usr/include:~/include
export C_INCLUDE_PATH
CMAKE_C_COMPILER=/usr/bin/llvm-gcc-4.2
export CMAKE_C_COMPILER
# OS SDK PATHS
IPHONE_SDK=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk
IPHONESIM_SDK=Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk
#MACOSX_SDK=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk
export IPHONE_SDK
export IPHONESIM_SDK
#export MACOS_SDK
C_INCLUDE_PATH=$IPHONE_SDK/usr/include:$IPHONESIM_SDK/usr/include:$C_INCLUDE_PATH:$HOME/local/include
CPLUS_INCLUDE_PATH=$C_INCLUDE_PATH:$CPLUS_INCLUDE_PATH
export C_INCLUDE_PATH
export CPLUS_INCLUDE_PATH
PATH=/opt/subversion/bin/:/Users/Daly/bin:$PATH:/Developer/usr/bin:/Applications/Octave.app/Contents/Resources/bin
export PATH
# /Users/Daly/bin/clang+llvm-3.1-x86_64-apple-darwin11/bin:/Users/Daly/Documents/School/EECS/Downloads/LLVM/build/Debug+Asserts/bin:
# Setting PATH for Python 3.2
# The orginal version is saved in .bash_profile.pysave
#PATH="/Library/Frameworks/Python.framework/Versions/3.2/bin:${PATH}"
#export PATH
##
# Your previous /Users/Daly/.bash_profile file was backed up as /Users/Daly/.bash_profile.macports-saved_2012-01-02_at_20:49:06
##
# MacPorts Installer addition on 2012-01-02_at_20:49:06: adding an appropriate PATH variable for use with MacPorts.
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
# Finished adapting your PATH environment variable for use with MacPorts.
# Setting PATH for Python 2.7
# The orginal version is saved in .bash_profile.pysave
#PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
#export PATH
# Setting PATH for Python 2.7
# The orginal version is saved in .bash_profile.pysave
#PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
#export PATH
##
# Your previous /Users/Daly/.bash_profile file was backed up as /Users/Daly/.bash_profile.macports-saved_2012-09-26_at_17:18:52
##
# MacPorts Installer addition on 2012-09-26_at_17:18:52: adding an appropriate PATH variable for use with MacPorts.
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
# Finished adapting your PATH environment variable for use with MacPorts.
##
# Your previous /Users/Daly/.bash_profile file was backed up as /Users/Daly/.bash_profile.macports-saved_2013-02-12_at_19:57:41
##
# MacPorts Installer addition on 2013-02-12_at_19:57:41: adding an appropriate PATH variable for use with MacPorts.
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
# Finished adapting your PATH environment variable for use with MacPorts.
export PATH=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin:$PATH
# ADD apple's llvm compilers to path
#PATH=/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/bin:$PATH
#export PATH