]>
Commit | Line | Data |
---|---|---|
397f14ce JS |
1 | \chapter{Installing wxWindows}\label{chapinstall} |
2 | \pagenumbering{arabic}% | |
3 | \setheader{{\it CHAPTER \thechapter: INSTALLING wxWINDOWS}}{}{}{}{}{{\it CHAPTER \thechapter: INSTALLING wxWINDOWS}}% | |
4 | \setfooter{\thepage}{}{}{}{}{\thepage}% | |
5 | ||
42b3e73e JS |
6 | CONTENTS: Installing wxWindows (and what tools to use). |
7 | ||
8 | Installing wxWindows isn't too hard. Each platform has a different method, so we'll look | |
9 | at each major platform in turn. | |
10 | ||
11 | \section{Unix: GTK+ and Motif}\label{installunix} | |
12 | ||
13 | \subsection{The most simple case} | |
14 | ||
15 | If you are compile wxWindows on Linux for the first time and don't like to read | |
16 | install instructions, just do this in the base directory: | |
17 | ||
18 | \begin{verbatim} | |
19 | ./configure --with-gtk | |
20 | make | |
21 | su <type root password> | |
22 | make install | |
23 | ldconfig | |
24 | exit | |
25 | \end{verbatim} | |
26 | ||
27 | This is using the GTK+ port. If using the Motif port, type --with-motif instead of --with-gtk. | |
28 | ||
29 | Afterwards you can continue with: | |
30 | ||
31 | \begin{verbatim} | |
32 | make | |
33 | su <type root password> | |
34 | make install | |
35 | ldconfig | |
36 | exit | |
37 | \end{verbatim} | |
38 | ||
39 | If you want to remove wxWindows on Unix you can do this: | |
40 | ||
41 | \begin{verbatim} | |
42 | su <type root password> | |
43 | make uninstall | |
44 | ldconfig | |
45 | exit | |
46 | \end{verbatim} | |
47 | ||
48 | \subsection{The expert case} | |
49 | ||
50 | If you want to do some more serious cross-platform programming with wxWindows, | |
51 | such as for GTK and Motif, you can now build two complete libraries and use | |
52 | them concurrently. For this end, you have to create a directory for each build | |
53 | of wxWindows - you may also want to create different versions of wxWindows | |
54 | and test them concurrently. Most typically, this would be a version configured | |
55 | with --enable-debug\_flag and one without. Note, that only one build can currently | |
56 | be installed, so you'd have to use a local version of the library for that purpose. | |
57 | For building three versions (one for GTK+, one for Motif and a debug GTK+ version) you'd do this: | |
58 | ||
59 | \begin{verbatim} | |
60 | md buildmotif | |
61 | cd buildmotif | |
62 | ../configure --with-motif | |
63 | make | |
64 | cd .. | |
65 | ||
66 | md buildgtk | |
67 | cd buildgtk | |
68 | ../configure --with-gtk | |
69 | make | |
70 | cd .. | |
71 | ||
72 | md buildgtkd | |
73 | cd buildgtkd | |
74 | ../configure --with-gtk --enable-debug_flag | |
75 | make | |
76 | cd .. | |
77 | \end{verbatim} | |
78 | ||
79 | \subsection{The most simple errors} | |
80 | ||
81 | \begin{itemize}\itemsep=0pt | |
82 | \item Configure reports, that you don't have GTK 1.2 installed although you are | |
83 | very sure you have. Well, you have installed it, but you also have another | |
84 | version of the GTK installed, which you may need to remove including other | |
85 | versions of glib (and its headers). Also, look for the PATH variable and check | |
86 | if it includes the path to the correct gtk-config! The check your LDPATH if it | |
87 | points to the correct library. There is no way to compile wxGTK if configure | |
88 | doesn't pass this test as all this test does is compile and link a GTK program. | |
89 | \item You get errors during compilation: The reason is that you probably have a broken | |
90 | compiler, which includes almost everything that is called gcc. If you use gcc 2.8 | |
2edb0bde | 91 | you have to disable optimisation as the compiler will give up with an internal |
42b3e73e JS |
92 | compiler error.You get immediate segfault when starting any sample or application: This is either |
93 | due to having compiled the library with different flags or options than your program - | |
94 | typically you might have the __WXDEBUG__ option set for the library but not for your | |
95 | program - or due to using a broken compiler (and its optimisation) such as GCC 2.8. | |
96 | \end{itemize} | |
97 | ||
98 | \subsection{The most simple program} | |
99 | ||
100 | Now create your super-application myfoo.app and compile anywhere with: | |
101 | ||
102 | \begin{verbatim} | |
103 | gcc myfoo.cpp `wx-config --libs --cflags` -o myfoo | |
104 | \end{verbatim} | |
105 | ||
106 | \wxheading{General} | |
107 | ||
108 | The Unix variants of wxWindows use GNU configure. If you have problems with your | |
109 | make use GNU make instead. | |
110 | ||
111 | If you have general problems with installation, visit Robert Roebling's homepage at | |
112 | ||
113 | \begin{verbatim} | |
114 | http://wesley.informatik.uni-freiburg.de/~wxxt | |
115 | \end{verbatim} | |
116 | ||
117 | for the latest information. If you still don't have any success, please send a bug | |
118 | report to one of the mailing lists. | |
119 | ||
120 | \wxheading{Libraries needed} | |
121 | ||
122 | wxWindows/GTK requires the GTK+ library to be installed on your system. It has to | |
2edb0bde | 123 | be a stable version, preferably version 1.2.3. |
42b3e73e JS |
124 | |
125 | You can get the newest version of the GTK+ from the GTK homepage at: | |
126 | ||
127 | \begin{verbatim} | |
128 | http://www.gtk.org | |
129 | \end{verbatim} | |
130 | ||
131 | wxWindows/Gtk requires a thread library and X libraries known to work with threads. | |
132 | This is the case on all commercial Unix-Variants and all Linux-Versions that are | |
133 | based on glibc 2 except RedHat 5.0 which is broken in many aspects. As of writing | |
134 | this, these Linux distributions have correct glibc 2 support: | |
135 | ||
136 | \begin{itemize}\itemsep=0pt | |
137 | \item RedHat 5.1 | |
138 | \item Debian 2.0 | |
139 | \item Stampede | |
140 | \item DLD 6.0 | |
141 | \item SuSE 6.0 | |
142 | \end{itemize} | |
143 | ||
144 | You can disable thread support by running | |
145 | ||
146 | \begin{verbatim} | |
147 | ./configure "--disable-threads" | |
148 | make | |
149 | su <type root password> | |
150 | make install | |
151 | ldconfig | |
152 | exit | |
153 | \end{verbatim} | |
154 | ||
155 | \subsection{Building wxGTK on OS/2} | |
156 | ||
157 | Please send comments and question about the OS/2 installation | |
158 | to Andrea Venturoli <a.ventu@flashnet.it> and patches to | |
159 | the wxWindows mailing list. | |
160 | ||
161 | You'll need OS/2 Warp (4.00FP#6), X-Free86/2 (3.3.3 or newer), | |
162 | GTK+ (1.2.5 or newer), emx (0.9d fix 1), flex (2.5.4), yacc (1.8), | |
163 | korn shell (5.2.13), Autoconf (2.13), GNU file utilities (3.6), | |
164 | GNU text utilities (1.3), GNU shell utilites (1.12), m4 (1.4), | |
165 | sed (2.05), grep (2.0), Awk (3.0.3), GNU Make (3.76.1). | |
166 | ||
167 | Open an OS/2 prompt and switch to the directory above. | |
168 | First set some global environment variables we need: | |
169 | ||
170 | \begin{verbatim} | |
171 | SET CXXFLAGS=-Zmtd -D__ST_MT_ERRNO__ | |
172 | SET CFLAGS=-Zmtd -D__ST_MT_ERRNO__ | |
173 | SET OSTYPE=OS2X | |
174 | SET COMSPEC=sh | |
175 | \end{verbatim} | |
176 | ||
177 | Notice you can choose whatever you want, if you don't like OS2X. | |
178 | ||
179 | Now, run autoconf in the main directory and in the samples, demos | |
180 | and utils subdirectory. This will generate the OS/2 specific | |
181 | versions of the configure scripts. Now run | |
182 | ||
183 | \begin{verbatim} | |
184 | configure --with-gtk | |
185 | \end{verbatim} | |
186 | ||
187 | as described above. | |
188 | ||
189 | If you have pthreads library installed, but have a gtk version | |
190 | which does not yet support threading, you need to explicitly | |
2edb0bde | 191 | disable threading by using the option --disable-threads. |
42b3e73e JS |
192 | |
193 | Note that configure assumes your flex will generate files named | |
194 | "lexyy.c", not "lex.yy.c". If you have a version which does | |
195 | generate "lex.yy.c", you need to manually change the generated | |
196 | makefile. | |
197 | ||
198 | \subsection{Building wxGTK on SGI} | |
199 | ||
200 | Using the SGI native compilers, it is recommended that you | |
201 | also set CFLAGS and CXXFLAGS before running configure. These | |
202 | should be set to: | |
203 | ||
204 | \begin{verbatim} | |
205 | CFLAGS="-mips3 -n32" | |
206 | CXXFLAGS="-mips3 -n32" | |
207 | \end{verbatim} | |
208 | ||
209 | This is essential if you want to use the resultant binaries | |
210 | on any other machine than the one it was compiled on. If you | |
211 | have a 64-bit machine (Octane) you should also do this to ensure | |
212 | you don't accidently build the libraries as 64bit (which is | |
213 | untested). | |
214 | ||
215 | The SGI native compiler support has only been tested on Irix 6.5. | |
216 | ||
217 | \subsection{Create your configuration} | |
218 | ||
219 | Usage: | |
220 | ||
221 | \begin{verbatim} | |
222 | ./configure options | |
223 | \end{verbatim} | |
224 | ||
225 | If you want to use system's C and C++ compiler, | |
226 | set environment variables CC and CCC as | |
227 | ||
228 | \begin{verbatim} | |
229 | setenv CC cc | |
230 | setenv CCC CC | |
231 | ./configure options | |
232 | \end{verbatim} | |
233 | ||
234 | to see all the options please use: | |
235 | ||
236 | \begin{verbatim} | |
237 | ./configure --help | |
238 | \end{verbatim} | |
239 | ||
240 | The basic philosophy is that if you want to use different | |
241 | configurations, like a debug and a release version, | |
242 | or use the same source tree on different systems, | |
243 | you have only to change the environment variable OSTYPE. | |
244 | (Sadly this variable is not set by default on some systems | |
245 | in some shells - on SGI's for example). So you will have to | |
246 | set it there. This variable HAS to be set before starting | |
247 | configure, so that it knows which system it tries to | |
248 | configure for. | |
249 | ||
250 | Configure (and sometimes make) will complain if the system variable OSTYPE has | |
251 | not been defined. | |
252 | ||
253 | \subsubsection{General options} | |
254 | ||
255 | Given below are the commands to change the default behaviour, | |
256 | i.e. if it says "--disable-threads" it means that threads | |
257 | are enabled by default. | |
258 | ||
259 | Normally, you won't have to choose a toolkit, because when | |
260 | you download wxGTK, it will default to --with-gtk etc. But | |
261 | if you use all of our CVS repository you have to choose a | |
262 | toolkit. You must do this by running configure with either of: | |
263 | ||
264 | \begin{verbatim} | |
265 | --without-gtk Don't use the GIMP ToolKit (GTK) | |
266 | ||
267 | --with-motif Use either Motif or Lesstif | |
268 | Configure will look for both. | |
269 | \end{verbatim} | |
270 | ||
271 | The following options handle the kind of library you want to build. | |
272 | ||
273 | \begin{verbatim} | |
274 | --disable-threads Compile without thread support. | |
275 | ||
276 | --disable-shared Do not create shared libraries. | |
277 | ||
278 | --enable-static Create static libraries. | |
279 | ||
280 | --disable-optimise Do not optimise the code. Can | |
281 | sometimes be useful for debugging | |
282 | and is required on some architectures | |
283 | such as Sun with gcc 2.8.X which | |
284 | and otherwise produce segvs. | |
285 | ||
286 | --enable-profile Add profiling info to the object | |
287 | files. Currently broken, I think. | |
288 | ||
289 | --enable-no_rtti Enable compilation without creation of | |
290 | C++ RTTI information in object files. | |
291 | This will speed-up compilation and reduce | |
292 | binary size. | |
293 | ||
294 | --enable-no_exceptions Enable compilation without creation of | |
295 | C++ exception information in object files. | |
296 | This will speed-up compilation and reduce | |
297 | binary size. Also fewer crashes during the | |
298 | actual compilation... | |
299 | ||
300 | --enable-no_deps Enable compilation without creation of | |
301 | dependency information. | |
302 | ||
2edb0bde VZ |
303 | --enable-permissive Enable compilation without checking for strict |
304 | ANSI conformance. Useful to prevent the build | |
305 | dying with errors as soon as you compile with | |
306 | Solaris' ANSI-defying headers. | |
42b3e73e JS |
307 | |
308 | --enable-mem_tracing Add built-in memory tracing. | |
309 | ||
310 | --enable-dmalloc Use the dmalloc memory debugger. | |
311 | Read more at www.letters.com/dmalloc/ | |
312 | ||
313 | --enable-debug_info Add debug info to object files and | |
314 | executables for use with debuggers | |
315 | such as gdb (or its many frontends). | |
316 | ||
317 | --enable-debug_flag Define __DEBUG__ and __WXDEBUG__ when | |
318 | compiling. This enable wxWindows' very | |
319 | useful internal debugging tricks (such | |
320 | as automatically reporting illegal calls) | |
321 | to work. Note that program and library | |
322 | must be compiled with the same debug | |
323 | options. | |
324 | \end{verbatim} | |
325 | ||
326 | \subsubsection{Feature Options} | |
327 | ||
328 | When producing an executable that is linked statically with wxGTK | |
329 | you'll be surprised at its immense size. This can sometimes be | |
330 | drastically reduced by removing features from wxWindows that | |
331 | are not used in your program. The most relevant such features | |
332 | are | |
333 | ||
334 | \begin{verbatim} | |
335 | --with-odbc Enables ODBC code. This is disabled | |
336 | by default because iODBC is under the | |
337 | L-GPL license. | |
338 | ||
339 | --without-libpng Disables PNG image format code. | |
340 | ||
341 | --without-libjpeg Disables JPEG image format code. | |
342 | ||
343 | --without-libtiff Disables TIFF image format code. | |
344 | ||
345 | --disable-pnm Disables PNM image format code. | |
346 | ||
347 | --disable-gif Disables GIF image format code. | |
348 | ||
349 | --disable-pcx Disables PCX image format code. | |
350 | ||
351 | --disable-resources Disables the use of *.wxr type | |
352 | resources. | |
353 | ||
354 | --disable-threads Disables threads. Will also | |
355 | disable sockets. | |
356 | ||
357 | --disable-sockets Disables sockets. | |
358 | ||
359 | --disable-dnd Disables Drag'n'Drop. | |
360 | ||
361 | --disable-clipboard Disables Clipboard. | |
362 | ||
2edb0bde | 363 | --disable-serial Disables object instance serialisation. |
42b3e73e JS |
364 | |
365 | --disable-streams Disables the wxStream classes. | |
366 | ||
367 | --disable-file Disables the wxFile class. | |
368 | ||
369 | --disable-textfile Disables the wxTextFile class. | |
370 | ||
371 | --disable-intl Disables the internationalisation. | |
372 | ||
373 | --disable-validators Disables validators. | |
374 | ||
375 | --disable-accel Disables accel. | |
376 | \end{verbatim} | |
377 | ||
378 | Apart from disabling certain features you can very often "strip" | |
379 | the program of its debugging information resulting in a significant | |
380 | reduction in size. | |
381 | ||
382 | \subsubsection{Compiling} | |
383 | ||
384 | The following must be done in the base directory (e.g. ~/wxGTK | |
385 | or ~/wxWin or whatever) | |
386 | ||
387 | Now the makefiles are created (by configure) and you can compile | |
388 | the library by typing: | |
389 | ||
390 | \begin{verbatim} | |
391 | make | |
392 | \end{verbatim} | |
393 | ||
394 | make yourself some coffee, as it will take some time. On an old | |
395 | 386SX possibly two weeks. During compilation, you'll get a few | |
396 | warning messages depending in your compiler. | |
397 | ||
398 | If you want to be more selective, you can change into a specific | |
2edb0bde | 399 | directory and type "make" there. |
42b3e73e JS |
400 | |
401 | Then you may install the library and it's header files under | |
402 | /usr/local/include/wx and /usr/local/lib respectively. You | |
403 | have to log in as root (i.e. run "su" and enter the root | |
404 | password) and type | |
405 | ||
406 | \begin{verbatim} | |
407 | make install | |
408 | \end{verbatim} | |
409 | ||
410 | You can remove any traces of wxWindows by typing | |
411 | ||
412 | \begin{verbatim} | |
413 | make uninstall | |
414 | \end{verbatim} | |
415 | ||
416 | If you want to save disk space by removing unnecessary | |
417 | object-files: | |
418 | ||
419 | \begin{verbatim} | |
420 | make clean | |
421 | \end{verbatim} | |
422 | ||
423 | in the various directories will do the work for you. | |
424 | ||
425 | \subsubsection{Creating a new Project} | |
426 | ||
427 | 1) The first way uses the installed libraries and header files | |
428 | automatically using wx-config | |
429 | ||
430 | \begin{verbatim} | |
431 | gcc myfoo.cpp `wx-config --cflags --libs` -o myfoo | |
432 | \end{verbatim} | |
433 | ||
434 | Using this way, a make file for the minimal sample would look | |
435 | like this | |
436 | ||
437 | \begin{verbatim} | |
438 | CC = gcc | |
439 | ||
440 | minimal: minimal.o | |
441 | $(CC) -o minimal minimal.o `wx-config --libs` | |
442 | ||
443 | minimal.o: minimal.cpp mondrian.xpm | |
444 | $(CC) `wx-config --cflags` -c minimal.cpp -o minimal.o | |
445 | ||
446 | clean: | |
447 | rm -f *.o minimal | |
448 | \end{verbatim} | |
449 | ||
450 | This is certain to become the standard way unless we decide | |
2edb0bde | 451 | to stick to tmake. |
42b3e73e JS |
452 | |
453 | 2) The other way creates a project within the source code | |
454 | directories of wxWindows. For this endeavour, you'll need | |
455 | GNU autoconf version 2.14 and add an entry to your Makefile.in | |
456 | to the bottom of the configure.in script and run autoconf | |
457 | and configure before you can type make. | |
458 | ||
459 | \section{Windows}\label{installwindows} | |
460 | ||
461 | ||
462 | \section{Mac}\label{installmac} | |
463 | ||
464 | We don't have information about Mac installation at this time. | |
397f14ce | 465 |