annotate doc/manual/manual_build.tex @ 632:ed19b429a152

- added explicit arm64 target, and clang tool options to Windows' configure.bat - configure.{bat,rc} now writing Makefile.config, for consistency/compatibility (e.g. configure.bat can now be used to set up env flags for a non-nmake toolchain) - simplified/decluttered Windows and Plan9 configure scripts (removal of unused/stale options, ...) - removed stale test/makepkg.sh helper
author Tassilo Philipp
date Sat, 19 Nov 2022 15:45:41 +0100
parents b47168dacba6
children 191aeb9d3bff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
1 %//////////////////////////////////////////////////////////////////////////////
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
2 %
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
3 % Copyright (c) 2007,2009 Daniel Adler <dadler@uni-goettingen.de>,
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
4 % Tassilo Philipp <tphilipp@potion-studios.com>
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
5 %
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
6 % Permission to use, copy, modify, and distribute this software for any
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
7 % purpose with or without fee is hereby granted, provided that the above
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
8 % copyright notice and this permission notice appear in all copies.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
9 %
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
10 % THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
11 % WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
12 % MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
13 % ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
14 % WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
15 % ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
16 % OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
17 %
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
18 %//////////////////////////////////////////////////////////////////////////////
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
19
467
b47168dacba6 manual:
Tassilo Philipp
parents: 76
diff changeset
20 \clearpage
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
21 \section{Building the library}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
22
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
23 The library has been built and used successfully on several
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
24 platform/architecture configurations and build systems.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
25 Please see notes on specfic platforms to check if the target
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
26 architecture is currently supported.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
27
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
28
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
29 \subsection{Requirements}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
30
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
31 The following tools are supported directly to build the \product{dyncall} library.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
32 However, as the number of source files to be compiled for a given
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
33 platform is small, it shouldn't be difficult to build it manually with
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
34 another toolchain.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
35 \begin{itemize}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
36 \item C compiler to build the \product{dyncall} library (GCC, Clang, SunPro or Microsoft C/C++ compiler)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
37 \item C++ compiler to build the optional test cases (GCC, Clang, SunPro or Microsoft C/C++ compiler)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
38 \item BSD make, GNU make, Microsoft nmake or mk (on Plan9) as automated build tools
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
39 \item Python (optional - for generation of some test cases)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
40 \item Lua (optional - for generation of some test cases)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
41 \item CMake (optional support)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
42 \end{itemize}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
43
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
44
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
45 \subsection{Supported/tested platforms and build systems}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
46
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
47 Building \product{dyncall} is a straightforward two-step process, first configure, then make. The
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
48 library should be able to be built with the default operating systems' build tools, so BSD make on
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
49 BSD and derived systems, GNU make on GNU and compatible, mk on Plan9, nmake on Windows, etc..
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
50 This is a detailed overview of platforms and their build tools that are known to build
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
51 \product{dyncall}:\\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
52 \\
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
53
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
54
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
55 \begin{tabular*}{0.75\textwidth}{lll}
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
56 \textbf{Platform} & Build Tool(s) & Compiler, SDK \\
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
57 \hline
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
58 \textbf{Windows} & nmake,Visual Studio & cl, cygwin (gcc), mingw (gcc) \\
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
59 \textbf{Unix-like} & GNU/BSD/Sun make & gcc, clang, sunc \\
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
60 \textbf{Plan9} & mk & 8c \\
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
61 \textbf{Haiku/BeOS} & GNU make & gcc \\
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
62 \textbf{iOS/iPhone} & GNU make & gcc and iPhone SDK on Mac OS X \\
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
63 \textbf{Nintendo DS} & nmake & devkitPro\cite{devkitPro} tools on Windows \\
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
64 \textbf{Playstation Portable} & GNU make & psptoolchain\cite{psptoolchain} tools \\
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
65 \end{tabular*}\\
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
66
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
67 \pagebreak
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
68
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
69 \subsection{Build instructions}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
70
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
71
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
72 \begin{enumerate}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
73 \item Configure the source (not needed for Makefile.embedded)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
74
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
75 \paragraph{*nix flavour}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
76 \begin{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
77 ./configure [--option ...]
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
78 \end{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
79
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
80 Available options (omit for defaults):
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
81
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
82 \begin{tabular*}{0.75\textwidth}{ll}
73
8326c5ced916 - doc cleanup and html work
cslag
parents: 0
diff changeset
83 {\tt --help} & display help \\
8326c5ced916 - doc cleanup and html work
cslag
parents: 0
diff changeset
84 {\tt --prefix=\textit{path}} & specify installation prefix (Unix shell) \\
8326c5ced916 - doc cleanup and html work
cslag
parents: 0
diff changeset
85 {\tt --target=\textit{platform}} & MacOSX,iOS,iPhoneSimulator,PSP,... \\
8326c5ced916 - doc cleanup and html work
cslag
parents: 0
diff changeset
86 {\tt --sdk=\textit{version}} & SDK version \\
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
87 \end{tabular*}
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
88
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
89 \paragraph{Windows flavour, and cross-build from Windows (PSP, NDS, etc.)}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
90
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
91 \begin{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
92 .\configure [/option ...]
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
93 \end{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
94
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
95 Available options:
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
96
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
97 \begin{tabular*}{0.75\textwidth}{ll}
632
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
98 {\tt /?} & display help \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
99 {\tt /target-x86} & build for x86 architecture (default) \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
100 {\tt /target-x64} & build for x64 architecture \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
101 {\tt /target-arm64} & build for x64 architecture \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
102 {\tt /target-psp} & cross-build for PlayStation Portable (homebrew SDK) \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
103 {\tt /target-nds-arm} & cross-build for Nintendo DS (devkitPro, ARM mode) \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
104 {\tt /target-nds-thumb} & cross-build for Nintendo DS (devkitPro, THUMB mode) \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
105 {\tt /tool-msvc} & use Microsoft Visual C++ compiler (default) \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
106 {\tt /tool-gcc} & use GNU Compiler Collection \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
107 {\tt /tool-clang} & use GNU Compiler Collection \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
108 {\tt /asm-ml} & use Microsoft Macro Assembler (default) \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
109 {\tt /asm-as} & use the GNU or LLVM Assembler \\
ed19b429a152 - added explicit arm64 target, and clang tool options to Windows' configure.bat
Tassilo Philipp
parents: 467
diff changeset
110 {\tt /asm-nasm} & use NASM Assembler \\
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
111 \end{tabular*}
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
112
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
113
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
114 \paragraph{Plan 9 flavour}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
115
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
116 \begin{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
117 ./configure.rc [--option ...]
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
118 \end{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
119
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
120 Available options (none, at the moment):
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
121
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
122 \begin{tabular*}{0.75\textwidth}{ll}
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
123 {\tt --help} & display help \\
76
7ca46969e0ad - tweaks in manual, mainly for html generation
cslag
parents: 73
diff changeset
124 \end{tabular*}
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
125
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
126
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
127 \item Build the static libraries \product{dyncall}, \product{dynload} and \product{dyncallback}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
128 \begin{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
129 make # for {GNU,BSD} Make
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
130 nmake /f Nmakefile # for NMake on Windows
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
131 mk # for mk on Plan9
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
132 \end{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
133
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
134 \item Install libraries and includes (supported for GNU and BSD make based builds, only)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
135 \begin{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
136 make install
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
137 \end{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
138
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
139 \item Optionally, build the test suite
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
140 \begin{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
141 make tests # for {GNU,BSD} Make
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
142 nmake /f Nmakefile tests # for NMake on Windows
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
143 mk tests # for mk on Plan9
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
144 \end{lstlisting}% @@@ check Plan9, should work already
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
145 \end{enumerate}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
146
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
147 \subsection{Build-tool specific notes}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
148
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
149 Some platforms require some manual tweaks:
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
150
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
151 Problem: Build fails because CC and/or related are not set, or different compiler,
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
152 linker, etc. should be used.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
153
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
154 Solution: Set the 'CC' and other environment variables explicitly to the desired
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
155 tools. E.g.:
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
156
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
157 \begin{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
158 CC=gcc make
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
159 \end{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
160
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
161
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
162 Problem: On windows using mingw and msys/unixutils 'Make', the make uses
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
163 'cc' for C compilation, which does not exist in mingw.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
164
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
165 Solution: Set the 'CC' environment variable explicitly to 'gcc' (as in
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
166 the example above).
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
167
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
168 \subsection{Build with CMake}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
169
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
170 \begin{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
171 cmake -DCMAKE_INSTALL_PREFIX=<location>
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
172 make
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
173 \end{lstlisting}
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
174