Files
scripts/local/bb/.vimrc.lib
Vahagn Khachatryan 243da630af bb setings.
2020-02-24 16:12:00 -05:00

49 lines
1.1 KiB
Plaintext
Executable File

let g:srcdir="/home/vkhachatrya5/devel/src"
"
" STL
"
"let &path.=",".g:tbbinc
"
" BOOST
"
let g:boostdir=g:srcdir."/boost"
let g:boostinc=g:boostdir
let g:boostlib=g:boostdir."/stage/lib"
let g:boostbin=g:boostlib
let g:Bboost=g:boostbin.":"
let g:Iboost=" -I".g:boostinc
let g:Lboost=" -L".g:boostlib
let g:boost=g:Iboost.g:Lboost
let &path.=",".g:boostinc
"
" Intel TBB
"
let g:tbbdir=g:srcdir."/tbb"
let g:tbbinc=g:tbbdir."/include"
let g:tbblib=g:tbbdir."/build/linux_intel64_gcc_cc4.8.2_libc2.5_kernel2.6.18_release"
let g:tbbbin=g:tbblib
let g:Itbb=" -I".g:tbbinc
let g:Ltbb=" -L".g:tbblib." -ltbb"
let g:tbbmalloc=" -ltbbmalloc"
let g:tbbmproxy=" -ltbbmalloc_proxy"
let g:tbb=g:Itbb.g:Ltbb
let &path.=",".g:tbbinc
"
" Robo
"
let g:robodir="/bb/build/Linux-x86_64-64/release/robolibs/stage/dpkgroot/opt/bb/include"
let g:roboinc=g:robodir."/include"
let g:robolib=g:robodir."/lib64"
let g:Ibb=" -I".g:roboinc
let g:Lbb=" -L".g:robolib
let g:bb=g:Ibb.g:Lbb
let &path.=",".g:roboinc
"
" Append library paths to LD_LIBRARY_PATH
"
"let $LD_LIBRARY_PATH .= ':'.g:boostlib.':'.g:tbblib