]>
Commit | Line | Data |
---|---|---|
42280e48 | 1 | wxWindows 2.5 for Motif installation |
5de9c45c JS |
2 | ------------------------------------ |
3 | ||
af111fc3 JS |
4 | IMPORTANT NOTE: |
5 | ||
6 | If you experience problems installing, please re-read these | |
7 | instructions and other related files (todo.txt, bugs.txt and | |
8 | osname.txt for your platform if it exists) carefully before | |
70aac632 | 9 | mailing wx-users or the author. Preferably, try to fix the |
af111fc3 JS |
10 | problem first and then send a patch to the author. |
11 | ||
12 | When sending bug reports tell us what version of wxWindows you are | |
13 | using (including the beta) and what compiler on what system. One | |
42280e48 | 14 | example: wxMotif 2.5.0, gcc 2.95.4, Redhat 6.1 |
af111fc3 JS |
15 | |
16 | First steps | |
17 | ----------- | |
dbda9e86 | 18 | |
42280e48 JS |
19 | - Prerequisites: Motif 1.2 or above, or Lesstif. Motif 2.0 and |
20 | above may also be suitable. | |
5de9c45c | 21 | |
42280e48 JS |
22 | - Download wxX11-x.y.z.tgz, where x.y.z is the version number. |
23 | (wxMotif is included in the wxX11 distribution). | |
f6bcfd97 BP |
24 | Download documentation in a preferred format, such as |
25 | wxWindows-HTML.zip or wxWindows-PDF.zip. | |
5de9c45c | 26 | |
af111fc3 | 27 | - Make a directory such as ~/wx and unarchive the files into this |
f6bcfd97 | 28 | directory. |
98ffbab9 | 29 | |
acbd13a3 JS |
30 | - It is recommended that you install bison and flex; using yacc |
31 | and lex may require tweaking of the makefiles. You also need | |
4417b343 VZ |
32 | libXpm (see comments in the Notes section below) if you want to have |
33 | XPM support in wxWindows (recommended). | |
acbd13a3 | 34 | |
1cf13934 | 35 | - You can now use configure to build wxWindows and the samples. |
4417b343 | 36 | |
70aac632 | 37 | Using configure is the only way to build the library. If it doesn't |
4417b343 VZ |
38 | work for you for whatever reason, please report it (together with detailed |
39 | information about your platform and the (relevant part of) contents of | |
1cf13934 JS |
40 | config.log file) to wx-dev@lists.wxwindows.org. |
41 | ||
acbd13a3 | 42 | |
44c4a334 | 43 | COMPILING USING CONFIGURE |
acbd13a3 | 44 | ========================= |
44c4a334 | 45 | |
b55a176b JS |
46 | * The simplest case |
47 | ------------------- | |
af111fc3 JS |
48 | |
49 | If you compile wxWindows on Linux for the first time and don't like to read | |
50 | install instructions just do (in the base dir): | |
51 | ||
52 | > ./configure --with-motif | |
53 | > make | |
54 | > su <type root password> | |
55 | > make install | |
56 | > ldconfig | |
57 | > exit | |
58 | ||
59 | Afterwards you can continue with | |
60 | ||
61 | > make | |
62 | > su <type root password> | |
63 | > make install | |
64 | > ldconfig | |
65 | > exit | |
66 | ||
67 | If you want to remove wxWindows on Unix you can do this: | |
68 | ||
69 | > su <type root password> | |
70 | > make uninstall | |
71 | > ldconfig | |
72 | > exit | |
73 | ||
74 | * The expert case | |
75 | ----------------- | |
76 | ||
77 | If you want to do some more serious cross-platform programming with wxWindows, | |
78 | such as for GTK and Motif, you can now build two complete libraries and use | |
2edb0bde | 79 | them concurrently. For this end, you have to create a directory for each build |
af111fc3 JS |
80 | of wxWindows - you may also want to create different versions of wxWindows |
81 | and test them concurrently. Most typically, this would be a version configured | |
70aac632 | 82 | with --enable-debug and one without. Note, that only one build can |
b55a176b JS |
83 | currently be installed, so you'd have to use local version of the library for |
84 | that purpose. For building three versions (one GTK, one Motif and a debug | |
85 | version of the GTK source) you'd do this: | |
af111fc3 | 86 | |
70aac632 | 87 | mkdir buildmotif |
af111fc3 JS |
88 | cd buildmotif |
89 | ../configure --with-motif | |
90 | make | |
91 | cd .. | |
92 | ||
70aac632 | 93 | mkdir buildgtk |
af111fc3 JS |
94 | cd buildgtk |
95 | ../configure --with-gtk | |
96 | make | |
97 | cd .. | |
98 | ||
70aac632 | 99 | mkdir buildgtkd |
af111fc3 | 100 | cd buildgtkd |
70aac632 | 101 | ../configure --with-gtk --enable-debug |
af111fc3 JS |
102 | make |
103 | cd .. | |
104 | ||
b55a176b JS |
105 | * The simplest errors |
106 | --------------------- | |
af111fc3 | 107 | |
b55a176b JS |
108 | You get errors during compilation: The reason is that you probably have a |
109 | broken compiler. GCC 2.8 and earlier versions and egcs are likely to cause | |
110 | problems due to incomplete support for C++ and optimisation bugs. Best to use | |
111 | GCC 2.95 or later. | |
af111fc3 | 112 | |
b55a176b JS |
113 | You get immediate segfault when starting any sample or application: This is |
114 | either due to having compiled the library with different flags or options than | |
115 | your program - typically you might have the __WXDEBUG__ option set for the | |
116 | library but not for your program - or due to using a compiler with optimisation | |
117 | bugs. | |
af111fc3 | 118 | |
b55a176b JS |
119 | * The simplest program |
120 | ---------------------- | |
af111fc3 JS |
121 | |
122 | Now create your super-application myfoo.app and compile anywhere with | |
123 | ||
b55a176b | 124 | g++ myfoo.cpp `wx-config --libs --cxxflags` -o myfoo |
af111fc3 JS |
125 | |
126 | * General | |
b55a176b | 127 | --------- |
af111fc3 | 128 | |
b55a176b JS |
129 | The Unix variants of wxWindows use GNU configure. If you have problems with |
130 | your make use GNU make instead. | |
af111fc3 | 131 | |
b55a176b | 132 | If you have general problems with installation, see the wxWindows website at |
af111fc3 | 133 | |
b55a176b | 134 | http://www.wxwindows.org/ |
af111fc3 JS |
135 | |
136 | for newest information. If you still don't have any success, please send a bug | |
70aac632 | 137 | report to one of our mailing lists (see my homepage) INCLUDING A DESCRIPTION OF |
b55a176b JS |
138 | YOUR SYSTEM AND YOUR PROBLEM, SUCH AS YOUR VERSION OF MOTIF, WXMOTIF, WHAT |
139 | DISTRIBUTION YOU USE AND WHAT ERROR WAS REPORTED. I know this has no effect, | |
140 | but I tried... | |
af111fc3 JS |
141 | |
142 | * GUI libraries | |
b55a176b | 143 | --------------- |
af111fc3 JS |
144 | |
145 | wxWindows/Motif requires the Motif library to be installed on your system. As | |
146 | an alternative, you may also use the free library "lesstif" which implements | |
147 | most of the Motif API without the licence restrictions of Motif. | |
148 | ||
149 | You can get the newest version of the Lesstif from the lesstif homepage at: | |
150 | ||
70aac632 | 151 | http://www.lesstif.org/ |
af111fc3 JS |
152 | |
153 | * Additional libraries | |
b55a176b | 154 | ---------------------- |
af111fc3 | 155 | |
b55a176b JS |
156 | wxWindows/Motif requires a thread library and X libraries known to work with |
157 | threads. This is the case on all commercial Unix-Variants and all | |
158 | Linux-Versions that are based on glibc 2 except RedHat 5.0 which is broken in | |
75fcbf8e VS |
159 | many aspects. As of writing this, virtually all Linux distributions have |
160 | correct glibc 2 support. | |
161 | ||
af111fc3 JS |
162 | You can disable thread support by running |
163 | ||
b55a176b | 164 | ./configure --disable-threads |
af111fc3 JS |
165 | make |
166 | su <type root password> | |
167 | make install | |
168 | ldconfig | |
169 | exit | |
170 | ||
b55a176b | 171 | * Building wxMotif on OS/2 |
9bb3479c JS |
172 | -------------------------- |
173 | ||
174 | Please send comments and question about the OS/2 installation | |
175 | to Andrea Venturoli <a.ventu@flashnet.it> and patches to | |
176 | the wxWindows mailing list. | |
177 | ||
178 | You'll need OS/2 Warp (4.00FP#6), X-Free86/2 (3.3.3 or newer), | |
179 | Lesstif (0.89.1 or newer), emx (0.9d fix 1), flex (2.5.4), | |
180 | yacc (1.8), unix like shell, e.g. korn shell (5.2.13), | |
181 | Autoconf (2.13), GNU file utilities (3.6), | |
182 | GNU text utilities (1.3), GNU shell utilites (1.12), m4 (1.4), | |
183 | sed (2.05), grep (2.0), Awk (3.0.3), GNU Make (3.76.1). | |
184 | ||
185 | Open an OS/2 prompt and switch to the directory above. | |
186 | First set some global environment variables we need: | |
187 | ||
188 | SET CXXFLAGS=-Zmtd -D__ST_MT_ERRNO__ | |
189 | SET CFLAGS=-Zmtd -D__ST_MT_ERRNO__ | |
190 | SET OSTYPE=OS2X | |
191 | SET COMSPEC=sh | |
192 | ||
193 | Notice you can choose whatever you want, if you don't like OS2X. | |
194 | ||
195 | Now, run autoconf in the main directory and in the samples, demos | |
196 | and utils subdirectory. This will generate the OS/2 specific | |
197 | versions of the configure scripts. Now run | |
198 | configure --with-motif | |
199 | as described above. | |
200 | ||
201 | To verify Lesstif installation, configure will try to compile a | |
202 | sample program that requires X headers/libraries to be either | |
203 | available via C_INCLUDE_PATH and LIBRARY_PATH or you need to | |
204 | explicitly set CFLAGS prior to running configure. | |
205 | ||
206 | If you have pthreads library installed, it will be autodetected | |
207 | and the library will be compiled with thread-support. | |
208 | ||
209 | Note that configure assumes your flex will generate files named | |
210 | "lexyy.c", not "lex.yy.c". If you have a version which does | |
211 | generate "lex.yy.c", you need to manually change the generated | |
212 | makefile. | |
213 | ||
af111fc3 | 214 | * Building wxMotif on SGI |
b55a176b | 215 | ------------------------- |
af111fc3 JS |
216 | |
217 | Using the SGI native compilers, it is recommended that you | |
218 | also set CFLAGS and CXXFLAGS before running configure. These | |
219 | should be set to : | |
220 | ||
221 | CFLAGS="-mips3 -n32" | |
222 | CXXFLAGS="-mips3 -n32" | |
223 | ||
224 | This is essential if you want to use the resultant binaries | |
225 | on any other machine than the one it was compiled on. If you | |
226 | have a 64bit machine (Octane) you should also do this to ensure | |
227 | you don't accidently build the libraries as 64bit (which is | |
228 | untested). | |
229 | ||
230 | The SGI native compiler support has only been tested on Irix 6.5. | |
231 | ||
232 | * Create your configuration | |
b55a176b | 233 | --------------------------- |
af111fc3 JS |
234 | |
235 | Usage: | |
b55a176b | 236 | ./configure [options] |
ee1aaf99 | 237 | |
af111fc3 | 238 | If you want to use system's C and C++ compiler, |
3a922bb4 | 239 | set environment variables CXX and CC as |
af111fc3 JS |
240 | |
241 | % setenv CC cc | |
3a922bb4 | 242 | % setenv CXX CC |
af111fc3 JS |
243 | % ./configure options |
244 | ||
245 | to see all the options please use: | |
246 | ||
247 | ./configure --help | |
248 | ||
249 | The basic philosophy is that if you want to use different | |
250 | configurations, like a debug and a release version, | |
251 | or use the same source tree on different systems, | |
252 | you have only to change the environment variable OSTYPE. | |
253 | (Sadly this variable is not set by default on some systems | |
254 | in some shells - on SGI's for example). So you will have to | |
255 | set it there. This variable HAS to be set before starting | |
256 | configure, so that it knows which system it tries to | |
257 | configure for. | |
258 | ||
259 | Configure will complain if the system variable OSTYPE has | |
260 | not been defined. And Make in some circumstances as well... | |
261 | ||
262 | ||
263 | * General options | |
264 | ------------------- | |
265 | ||
266 | Given below are the commands to change the default behaviour, | |
267 | i.e. if it says "--disable-threads" it means that threads | |
268 | are enabled by default. | |
269 | ||
2edb0bde | 270 | Many of the configure options have been thoroughly tested |
af111fc3 JS |
271 | in wxWindows snapshot 6, but not yet all (ODBC not). |
272 | ||
273 | You have to add --with-motif on platforms, where Motif is | |
2edb0bde | 274 | not the default (on Linux, configure will default to GTK). |
af111fc3 | 275 | |
af111fc3 JS |
276 | --with-motif Use either Motif or Lesstif |
277 | Configure will look for both. | |
278 | ||
279 | The following options handle the kind of library you want to build. | |
280 | ||
281 | --disable-threads Compile without thread support. Threads | |
282 | support is also required for the | |
75fcbf8e | 283 | socket code to work. |
af111fc3 JS |
284 | |
285 | --disable-shared Do not create shared libraries. | |
286 | ||
75fcbf8e VS |
287 | --enable-monolithic Build wxWindows as single library instead |
288 | of as several smaller libraries (which is | |
289 | the default since wxWindows 2.5.0). | |
290 | ||
291 | --disable-optimise Do not optimise the code. Can | |
af111fc3 | 292 | sometimes be useful for debugging |
75fcbf8e VS |
293 | and is required on some architectures |
294 | such as Sun with gcc 2.8.X which | |
295 | would otherwise produce segvs. | |
af111fc3 JS |
296 | |
297 | --enable-profile Add profiling info to the object | |
298 | files. Currently broken, I think. | |
299 | ||
300 | --enable-no_rtti Enable compilation without creation of | |
301 | C++ RTTI information in object files. | |
302 | This will speed-up compilation and reduce | |
303 | binary size. | |
304 | ||
305 | --enable-no_exceptions Enable compilation without creation of | |
306 | C++ exception information in object files. | |
307 | This will speed-up compilation and reduce | |
308 | binary size. Also fewer crashes during the | |
309 | actual compilation... | |
310 | ||
311 | --enable-no_deps Enable compilation without creation of | |
312 | dependency information. | |
313 | ||
2edb0bde VZ |
314 | --enable-permissive Enable compilation without checking for strict |
315 | ANSI conformance. Useful to prevent the build | |
316 | dying with errors as soon as you compile with | |
317 | Solaris' ANSI-defying headers. | |
af111fc3 JS |
318 | |
319 | --enable-mem_tracing Add built-in memory tracing. | |
320 | ||
321 | --enable-dmalloc Use the dmalloc memory debugger. | |
322 | Read more at www.letters.com/dmalloc/ | |
323 | ||
70aac632 MB |
324 | --enable-debug Equivalent to --enable-debug_info plus |
325 | --enable-debug-flag. | |
326 | ||
af111fc3 JS |
327 | --enable-debug_info Add debug info to object files and |
328 | executables for use with debuggers | |
329 | such as gdb (or its many frontends). | |
330 | ||
331 | --enable-debug_flag Define __DEBUG__ and __WXDEBUG__ when | |
332 | compiling. This enable wxWindows' very | |
333 | useful internal debugging tricks (such | |
334 | as automatically reporting illegal calls) | |
335 | to work. Note that program and library | |
336 | must be compiled with the same debug | |
337 | options. | |
338 | ||
339 | * Feature Options | |
b55a176b | 340 | ----------------- |
af111fc3 | 341 | |
2edb0bde | 342 | Many of the configure options have been thoroughly tested |
af111fc3 JS |
343 | in wxWindows snapshot 6, but not yet all (ODBC not). |
344 | ||
345 | When producing an executable that is linked statically with wxGTK | |
346 | you'll be surprised at its immense size. This can sometimes be | |
347 | drastically reduced by removing features from wxWindows that | |
348 | are not used in your program. The most relevant such features | |
349 | are | |
350 | ||
351 | --without-libpng Disables PNG image format code. | |
352 | ||
353 | --without-libjpeg Disables JPEG image format code. | |
354 | ||
70aac632 | 355 | --without-odbc Disables ODBC code. |
75fcbf8e VS |
356 | |
357 | --without-libtiff Disables TIFF image format code. | |
358 | ||
359 | --without-expat Disable XML classes based on Expat parser. | |
af111fc3 | 360 | |
af111fc3 JS |
361 | --disable-threads Disables threads. Will also |
362 | disable sockets. | |
363 | ||
364 | --disable-sockets Disables sockets. | |
365 | ||
366 | --disable-dnd Disables Drag'n'Drop. | |
367 | ||
368 | --disable-clipboard Disables Clipboard. | |
369 | ||
af111fc3 JS |
370 | --disable-streams Disables the wxStream classes. |
371 | ||
372 | --disable-file Disables the wxFile class. | |
373 | ||
374 | --disable-textfile Disables the wxTextFile class. | |
375 | ||
376 | --disable-intl Disables the internationalisation. | |
377 | ||
378 | --disable-validators Disables validators. | |
379 | ||
380 | --disable-accel Disables accel. | |
381 | ||
382 | Apart from disabling certain features you can very often "strip" | |
383 | the program of its debugging information resulting in a significant | |
384 | reduction in size. | |
385 | ||
75fcbf8e VS |
386 | Please see the output of "./configure --help" for comprehensive list |
387 | of all configurable options. | |
388 | ||
389 | ||
af111fc3 | 390 | * Compiling |
b55a176b | 391 | ----------- |
af111fc3 | 392 | |
b55a176b | 393 | The following must be done in the base directory (e.g. ~/wxMotif |
af111fc3 JS |
394 | or ~/wxWin or whatever) |
395 | ||
396 | Now the makefiles are created (by configure) and you can compile | |
397 | the library by typing: | |
398 | ||
399 | make | |
400 | ||
401 | make yourself some coffee, as it will take some time. On an old | |
70aac632 | 402 | Pentium 200 around 40 minutes. During compilation, you may get a few |
af111fc3 JS |
403 | warning messages depending in your compiler. |
404 | ||
405 | If you want to be more selective, you can change into a specific | |
2edb0bde | 406 | directory and type "make" there. |
af111fc3 | 407 | |
2edb0bde | 408 | Then you may install the library and its header files under |
af111fc3 JS |
409 | /usr/local/include/wx and /usr/local/lib respectively. You |
410 | have to log in as root (i.e. run "su" and enter the root | |
411 | password) and type | |
412 | ||
413 | make install | |
414 | ||
415 | You can remove any traces of wxWindows by typing | |
416 | ||
417 | make uninstall | |
418 | ||
419 | If you want to save disk space by removing unnecessary | |
420 | object-files: | |
421 | ||
422 | make clean | |
423 | ||
424 | in the various directories will do the work for you. | |
425 | ||
426 | * Creating a new Project | |
b55a176b | 427 | ------------------------ |
af111fc3 JS |
428 | |
429 | 1) The first way uses the installed libraries and header files | |
430 | automatically using wx-config | |
431 | ||
b55a176b | 432 | g++ myfoo.cpp `wx-config --libs` `wx-config --cxxflags` -o myfoo |
af111fc3 JS |
433 | |
434 | Using this way, a make file for the minimal sample would look | |
435 | like this | |
436 | ||
3a922bb4 | 437 | CXX = g++ |
af111fc3 JS |
438 | |
439 | minimal: minimal.o | |
3a922bb4 | 440 | $(CXX) -o minimal minimal.o `wx-config --libs` |
af111fc3 JS |
441 | |
442 | minimal.o: minimal.cpp mondrian.xpm | |
b55a176b | 443 | $(CXX) `wx-config --cxxflags` -c minimal.cpp -o minimal.o |
af111fc3 JS |
444 | |
445 | clean: | |
446 | rm -f *.o minimal | |
447 | ||
448 | This is certain to become the standard way unless we decide | |
2edb0bde | 449 | to stick to tmake. |
af111fc3 | 450 | |
75fcbf8e VS |
451 | If your application uses only some of wxWindows libraries, you can |
452 | specify required libraries when running wx-config. For example, | |
453 | `wx-config --libs=html,core` will only output link command to link | |
454 | with libraries required by core GUI classes and wxHTML classes. See | |
455 | the manual for more information on the libraries. | |
456 | ||
af111fc3 JS |
457 | 2) The other way creates a project within the source code |
458 | directories of wxWindows. For this endeavour, you'll need | |
459 | GNU autoconf version 2.14 and add an entry to your Makefile.in | |
460 | to the bottom of the configure.in script and run autoconf | |
461 | and configure before you can type make. | |
462 | ||
463 | * Further notes by Julian Smart | |
464 | --------------------------------- | |
465 | ||
ee1aaf99 JS |
466 | - You may find the following script useful for compiling wxMotif, |
467 | especially if installing from zips (which don't preserve file | |
468 | permissions). Make this script executable with the command | |
8870c26e JS |
469 | chmod a+x makewxmotif. |
470 | ||
471 | -------:x-----Cut here-----:x----- | |
472 | # makewxmotif | |
473 | # Sets permissions (in case we extracted wxMotif from zip files) | |
474 | # and makes wxMotif. | |
475 | # Call from top-level wxWindows directory. | |
476 | # Note that this uses standard (but commonly-used) configure options; | |
4417b343 VZ |
477 | # if you're feeling brave, you may wish to compile with threads: |
478 | # if they're not supported by the target platform, they will be disabled | |
479 | # anyhow | |
8870c26e | 480 | # -- Julian Smart |
af111fc3 | 481 | chmod a+x configure config.sub config.guess |
70aac632 | 482 | ./configure --with-shared --with-motif --with-debug_flag --with-debug_info --enable-debug --without-threads --without-sockets --without-odbc |
44c4a334 | 483 | make |
8870c26e JS |
484 | -------:x-----Cut here-----:x----- |
485 | ||
af111fc3 JS |
486 | This script will build wxMotif using shared libraries. If you want to build |
487 | a static wxWindows library, use --disable-shared. | |
f5ee2e5f | 488 | |
750b78ba JS |
489 | Troubleshooting |
490 | --------------- | |
491 | ||
b55a176b JS |
492 | - Solaris compilation with gcc: if the compiler has problems with the variable |
493 | argument functions, try putting the gcc fixinclude file paths early in the | |
494 | include path. | |
750b78ba | 495 | |
0492c5a0 JS |
496 | - If you operator-related compile errors or strange memory problems |
497 | (for example in deletion of string arrays), set wxUSE_GLOBAL_MEMORY_OPERATORS | |
498 | and wxUSE_MEMORY_TRACING to 0 in setup.h, and recompile. | |
cba2db0c | 499 | |
4417b343 | 500 | - If you get an internal compiler error in gcc, turn off optimisations. |
ca5c8b2d | 501 | |
cba2db0c JS |
502 | - Problems with XtDestroyWidget crashing in ~wxWindow have been |
503 | reported on SGI IRIX 6.4. This has not yet been resolved, so | |
504 | any advice here would be very welcome. See bugs.txt for a | |
0492c5a0 JS |
505 | possible temporary workaround (comment out the final |
506 | XtDestroyWidget from ~wxWindow in window.cpp). | |
cba2db0c | 507 | |
ad813b00 JS |
508 | - Some compilers, such as Sun C++, may give a lot of warnings about |
509 | virtual functions being hidden. Please ignore these, it's correct C++ syntax. | |
510 | If you find any incorrect instances, though, such as a | |
511 | missing 'const' in an overridden function, please let us know. | |
512 | ||
750b78ba JS |
513 | Other Notes |
514 | ----------- | |
5de9c45c | 515 | |
70aac632 MB |
516 | - Using configure will create a release build of the library by |
517 | default: it's recommended to use --enable-debug configure switch | |
518 | while developing your application. To compile in non-debug mode, use | |
519 | --disable-debug configure switch. | |
ea57084d | 520 | |
750b78ba JS |
521 | Bug reports |
522 | ----------- | |
523 | ||
524 | Please send bug reports with a description of your environment, | |
4417b343 | 525 | compiler and the error message(s) to the wxwin-developers mailing list at: |
5de9c45c | 526 | |
1cf13934 | 527 | wx-dev@lists.wxwindows.org |
5de9c45c | 528 | |
ee1aaf99 JS |
529 | Julian Smart, Robert Roebling and Vadim Zeitlin, November 1999. |
530 |