IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11757


Ignore:
Timestamp:
Feb 12, 2007, 3:28:42 PM (19 years ago)
Author:
jhoblitt
Message:

add "Trouble Shooting Build Issues" section

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/manual/manual.tex

    r11610 r11757  
    1  %%% $Id: manual.tex,v 1.4 2007-02-03 04:48:45 jhoblitt Exp $
     1 %%% $Id: manual.tex,v 1.5 2007-02-13 01:28:42 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    11081108
    11091109
     1110\section{Trouble Shooting Build Issues}
     1111
     1112\subsection{missing libX11.so}
     1113
     1114RedHat RHEL 3 & 4 (likely other RedHat variants as well) for \emph{amd64} seem
     1115to often be installed without a \code{libX11.so} under
     1116\code{/usr/X11R6/lib64/}.  This will cause 64bit builds trying to link against
     1117libX11 (\code{-lX11}) to fail.
     1118
     1119If you have root access you can fix this by adding the missing symlink
     1120yourself.  Eg..
     1121
     1122\begin{verbatium}
     1123su -
     1124cd /usr/X116/lib64
     1125ln -s libX11.so.6.2 libX11.so
     1126\end{verbatium}
     1127
     1128or with \code{sudo}:
     1129
     1130\begin{verbatium}
     1131cd /usr/X116/lib64
     1132sudo ln -s libX11.so.6.2 libX11.so
     1133\end{verbatium}
     1134
     1135
     1136For users without root access to thier system ,a symlink needs to be installed
     1137under \code{\$prefix/lib}, where \code{\$prefix} is the path underwhich your
     1138installing IPP software.  Note that \code{\$prefix/lib} will also need to be manually added the enviroment variable \code{LD_LIBRARY_PATH} if your not using jhbuild. E.g for ksh/bash users:
     1139
     1140\begin{verbatium}
     1141export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/[foo]/[yourinstallprefix]/lib
     1142\end{verbatium}
     1143
     1144
    11101145%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    11111146                                                                               
Note: See TracChangeset for help on using the changeset viewer.