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