export GLOBUS_LOCATION=/path/to/install
make gsi-myproxy gsi-openssh
when I tried to run gsissh, I encounter " error while loading shared libraries: libglobus_gss_assist_gcc64dbg.so.0 ". The problem is gsissh doesn't link to the installed libraries. We can look up required libraries for application by using
ldd /path/to/application
The libglobus_gss_assist_gcc64dbg.so.0 is actually installed in the same location of Globus Toolkit, but Ubuntu doesn't automatically link it for us. So, we need to add libraries location to our system. Using command
sudo ldconfig /path/to/my/usr/local/lib/
Resources:
[1] - http://ubuntuforums.org/showthread.php?t=496553