bb setings.
This commit is contained in:
48
local/bb/.vimrc.lib
Executable file
48
local/bb/.vimrc.lib
Executable file
@@ -0,0 +1,48 @@
|
||||
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
|
||||
Reference in New Issue
Block a user