docs/Writerside/topics/install.md

Mon, 10 Feb 2025 21:59:39 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 10 Feb 2025 21:59:39 +0100
branch
docs/3.1
changeset 1182
3ce4a58a3eea
parent 1173
99fc65d2d22b
permissions
-rw-r--r--

update install instructions with instructions for windows DLL

relates to #451
relates to #582

1140
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 ---
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 title: Build Instructions
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3 ---
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
4
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5 The build processes uses configure and make.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 Make sure that you have `make` and a
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 <tooltip term="supported-compilers">supported compiler</tooltip>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 installed.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 <tabs>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11 <tab title="Unix / Linux">
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 <procedure>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 <step>
1182
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
14 Download the latest source archive from
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
15 <a href="https://sourceforge.net/projects/ucx/files/">Source Forge</a> and extract it somewhere on your machine.
1140
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
16 You can also use the command line to do this.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 <code-block lang="sh">
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 wget https://sourceforge.net/projects/ucx/files/ucx-latest.tar.gz
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 tar -xzf ucx-latest.tar.gz
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 cd ucx-latest
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
21 </code-block>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
22 </step>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
23 <step>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
24 Configure the build according to your preferences. You can get a list of
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
25 all available options with <code>./configure --help</code>.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
26 The recommended configuration for production builds is <code>./configure --release</code>.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
27 <code-block lang="sh">
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
28 ./configure --release
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
29 make
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
30 make check
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
31 sudo make install
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
32 </code-block>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
33 <note>The check target is optional and only runs some tests with the built software.</note>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
34 </step>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
35 </procedure>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
36 </tab>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
37 <tab title="Windows">
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
38 <procedure>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
39 <step>
1182
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
40 Download the latest source archive from
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
41 <a href="https://sourceforge.net/projects/ucx/files/">Source Forge</a> and extract it somewhere on your machine.
1140
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
42 </step>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
43 <step>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
44 Navigate to the folder named <code>msvc</code> in the extracted directory structure.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
45 </step>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
46 <step>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
47 Open the contained <code>ucx.sln</code> in Visual Studio and build the solution.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
48 </step>
1182
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
49 <step>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
50 The libucx project in the solution will produce a libucx.lib that can be used for static linking
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
51 and the libucx_dll project will produce a libucx.dll and a libucx.dll.lib import lib for dynamic linking.
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
52 </step>
1140
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
53 </procedure>
1182
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
54 <note>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
55 For native Windows projects it is recommended to statically link UCX.
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
56 </note>
1140
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
57 </tab>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
58 </tabs>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
59
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
60 ## Compile Time Options
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
61
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
62 When compiling UCX, you can tweak several compile time variables via macro definitions.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
63
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
64 ### Features Defines
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
65
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
66 The following macros are not defined by default.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
67 The effect when they are defined in described in the table.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
68
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
69 <table>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
70 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
71 <th>Macro</th>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
72 <th>Effect</th>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
73 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
74 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
75 <td>CX_NO_SZMUL_BUILTINT</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
76 <td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
77 By default, UCX uses a compiler builtin (only available for clang and gcc)
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
78 to perform multiplications with overflow check.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
79 When this macro is defined, using the builtin is disabled and UCX will
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
80 always use an own implementation.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
81 <tip>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
82 This macro is defined when you use the <code>--disable-szmul-builtin</code>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
83 option during configuration, so you do not need to define it manually.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
84 </tip>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
85 </td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
86 </tr>
1182
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
87 <tr>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
88 <td>CX_WINDLL</td>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
89 <td>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
90 Define this macro during compilation of the project that is <emphasis>using</emphasis>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
91 UCX as a Windows DLL to import the symbols.
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
92 In general it is recommended to use UCX as a static library under Windows, though.
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
93 </td>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
94 </tr>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
95 <tr>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
96 <td>CX_WINDLL_EXPORT</td>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
97 <td>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
98 Define this macro during compilation of UCX to export symbols for a Windows DLL.
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
99 <tip>The Visual Studio Solution does that automatically.</tip>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
100 </td>
3ce4a58a3eea update install instructions with instructions for windows DLL
Mike Becker <universe@uap-core.de>
parents: 1173
diff changeset
101 </tr>
1140
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
102 </table>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
103
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
104 ### Small Buffer Optimizations
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
105
1173
99fc65d2d22b add sub-section intro texts to install.md
Mike Becker <universe@uap-core.de>
parents: 1140
diff changeset
106 With the following macros you can control the size of stack memory for small buffer optimizations.
99fc65d2d22b add sub-section intro texts to install.md
Mike Becker <universe@uap-core.de>
parents: 1140
diff changeset
107
1140
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
108 <table>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
109 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
110 <th>Macro</th>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
111 <th>Description</th>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
112 <th>Default</th>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
113 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
114 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
115 <td>CX_ARRAY_SWAP_SBO_SIZE</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
116 <td>The maximum item size in an array list that uses SBO.</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
117 <td>128</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
118 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
119 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
120 <td>CX_LINKED_LIST_SORT_SBO_SIZE</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
121 <td>The maximum list size that uses SBO during sort.</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
122 <td>1024</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
123 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
124 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
125 <td>CX_PRINTF_SBO_SIZE</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
126 <td>The maximum string length functions in printf.h use stack memory for.</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
127 <td>512</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
128 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
129 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
130 <td>CX_STRSTR_SBO_SIZE</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
131 <td>The maximum length of the "needle" in cx_strstr that can use SBO.</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
132 <td>128</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
133 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
134 </table>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
135
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
136
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
137 ### Other Buffers
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
138
1173
99fc65d2d22b add sub-section intro texts to install.md
Mike Becker <universe@uap-core.de>
parents: 1140
diff changeset
139 With the following macros you can control other buffer sizes that are not falling into the category of small buffer optimizations.
99fc65d2d22b add sub-section intro texts to install.md
Mike Becker <universe@uap-core.de>
parents: 1140
diff changeset
140
1140
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
141 <table>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
142 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
143 <th>Macro</th>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
144 <th>Description</th>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
145 <th>Default</th>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
146 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
147 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
148 <td>CX_STRREPLACE_INDEX_BUFFER_SIZE</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
149 <td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
150 The number of matches the index buffer can store on the stack.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
151 If the function finds more matches, more index buffers of the same size are allocated on the heap.
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
152 </td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
153 <td>64</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
154 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
155 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
156 <td>CX_STREAM_COPY_BUF_SIZE</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
157 <td>The buffer size on the stack for a stream copy.</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
158 <td>1024</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
159 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
160 <tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
161 <td>CX_STREAM_BCOPY_BUF_SIZE</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
162 <td>The buffer size on the heap for a stream copy.</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
163 <td>8192</td>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
164 </tr>
88a9ee79c102 start overhauling the entire web documentation
Mike Becker <universe@uap-core.de>
parents:
diff changeset
165 </table>

mercurial