Changeset 11757
- Timestamp:
- Feb 12, 2007, 3:28:42 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/doc/manual/manual.tex (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/manual.tex
r11610 r11757 1 %%% $Id: manual.tex,v 1. 4 2007-02-03 04:48:45jhoblitt Exp $1 %%% $Id: manual.tex,v 1.5 2007-02-13 01:28:42 jhoblitt Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 1108 1108 1109 1109 1110 \section{Trouble Shooting Build Issues} 1111 1112 \subsection{missing libX11.so} 1113 1114 RedHat RHEL 3 & 4 (likely other RedHat variants as well) for \emph{amd64} seem 1115 to often be installed without a \code{libX11.so} under 1116 \code{/usr/X11R6/lib64/}. This will cause 64bit builds trying to link against 1117 libX11 (\code{-lX11}) to fail. 1118 1119 If you have root access you can fix this by adding the missing symlink 1120 yourself. Eg.. 1121 1122 \begin{verbatium} 1123 su - 1124 cd /usr/X116/lib64 1125 ln -s libX11.so.6.2 libX11.so 1126 \end{verbatium} 1127 1128 or with \code{sudo}: 1129 1130 \begin{verbatium} 1131 cd /usr/X116/lib64 1132 sudo ln -s libX11.so.6.2 libX11.so 1133 \end{verbatium} 1134 1135 1136 For users without root access to thier system ,a symlink needs to be installed 1137 under \code{\$prefix/lib}, where \code{\$prefix} is the path underwhich your 1138 installing 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} 1141 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/[foo]/[yourinstallprefix]/lib 1142 \end{verbatium} 1143 1144 1110 1145 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 1111 1146
Note:
See TracChangeset
for help on using the changeset viewer.
