You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to install elsewhere than home, cmake accept -DCMAKE_INSTALL_PREFIX, if so, after make install step, LD_LIBRARY_PATH will have to match.
example: cmake .. -DCMAKE_INSTALL_PREFIX=/software/hpc/BamTools/2.4.0 make [sudo/su -/admin user] make install
then, users will have to add to their env (either with moduleenv, rc files, whatever), here bash: export LD_LIBRARY_PATH="/software/hpc/BamTools/2.4.0/lib/bamtools/:$LD_LIBRARY_PATH" export PATH="/software/hpc/BamTools/2.4.0/bin/:$PATH"
The text was updated successfully, but these errors were encountered:
Hi,
to install elsewhere than home, cmake accept
-DCMAKE_INSTALL_PREFIX
, if so, aftermake install
step,LD_LIBRARY_PATH
will have to match.example:
cmake .. -DCMAKE_INSTALL_PREFIX=/software/hpc/BamTools/2.4.0
make
[sudo/su -/admin user] make install
then, users will have to add to their env (either with moduleenv, rc files, whatever), here bash:
export LD_LIBRARY_PATH="/software/hpc/BamTools/2.4.0/lib/bamtools/:$LD_LIBRARY_PATH"
export PATH="/software/hpc/BamTools/2.4.0/bin/:$PATH"
The text was updated successfully, but these errors were encountered: