diff options
author | lloyd <[email protected]> | 2010-11-29 22:52:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-11-29 22:52:17 +0000 |
commit | 0e41e0e8d441ff907f092c718db650cda06e2e1a (patch) | |
tree | 8c0df20500bdf601d4378a6000923501a48ad1f3 /doc/building.tex | |
parent | 5d4621b745ac529c7df6c4d91e4d2b68bd0325e4 (diff) | |
parent | 65ab36776317f73ddf0f2d3bd6c1c7e35608962f (diff) |
propagate from branch 'net.randombit.botan' (head fc8daa606ab7954eab48778d7236986747b719e4)
to branch 'net.randombit.botan.c++0x' (head 2bf71b0a2e0e468d7eb3631e4ca284234f554729)
Diffstat (limited to 'doc/building.tex')
-rw-r--r-- | doc/building.tex | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/building.tex b/doc/building.tex index 36a9f1140..7164f74eb 100644 --- a/doc/building.tex +++ b/doc/building.tex @@ -149,6 +149,19 @@ order for new shared libraries to be picked up by the linker. An alternative is to set your \texttt{LD\_LIBRARY\_PATH} shell variable to include the directory that the Botan libraries were installed into. +\subsection{Mac OS X} + +In general the Unix instructions above should apply, however OS X does +not support \texttt{LD\_LIBRARY\_PATH}. Thomas Keller suggests instead +running \verb|install_name_tool| between building and running the +self-test program: + +\begin{verbatim} + $ VERSION=1.9.10 + $ install_name_tool -change $(otool -X -D libbotan-$VERSION.dylib) \ + $PWD/libbotan-$VERSION.dylib check +\end{verbatim} + \subsection{MS Windows} If you don't want to deal with building botan on Windows, check the |