forked from italic-r/maya-prefs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_profile
executable file
·51 lines (40 loc) · 1.43 KB
/
.bash_profile
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
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
# PYTHONPATH=/usr/lib64/python2.7/site-packages
PATH=$HOME/.local/bin:$HOME/bin:$PATH
C_INCLUDE_PATH=$HOME/include:$C_INCLUDE_PATH
CPLUS_INCLUDE_PATH=$HOME/include:$CPLUS_INCLUDE_PATH
LD_LIBRARY_PATH=$HOME/lib:$HOME/lib64:/usr/lib:/usr/lib64:$LD_LIBRARY_PATH
# Rust
source $HOME/.cargo/env
# Source variables
#export GIT_SSH=/usr/bin/ssh
PATH=$HOME/src/phab/arcanist/bin:$PATH
source $HOME/src/phab/arcanist/resources/shell/bash-completion
# Blender variables
export B3D_PY_PATH=/opt/lib/python-3.5
CUDA_PATH=/usr/local/cuda
PATH=$CUDA_PATH/bin:$HOME/blender:$PATH
C_INCLUDE_PATH=$CUDA_PATH/include:/opt/lib/openvdb/include:$B3D_PY_PATH/include:$C_INCLUDE_PATH
CPLUS_INCLUDE_PATH=$CUDA_PATH/include:/opt/lib/openvdb/include:$B3D_PY_PATH/include:$CPLUS_INCLUDE_PATH
LD_LIBRARY_PATH=$CUDA_PATH/lib64:$B3D_PY_PATH/lib:/opt/lib/python-3.5-bpy/lib:$LD_LIBRARY_PATH
CYCLES_CUDA_ADAPTIVE_COMPILE=1
# Maya variables
MAYA_APP_DIR=$HOME/maya
MAYA_MODULE_PATH=$HOME/maya/modules
RMANTREE=/opt/pixar/RenderManProServer-20.9
RMSTREE=/opt/pixar/RenderManStudio-20.9-maya2016
PATH=$RMSTREE/bin:$HOME/bin:opt/pixar/RenderManProServer-20.9/bin:$PATH
# export PYTHONPATH
export PATH
export C_INCLUDE_PATH
export CPLUS_INCLUDE_PATH
export LD_LIBRARY_PATH
export MAYA_APP_DIR
export MAYA_MODULE_DIR
export RMANTREE
export RMSTREE