]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/gtk/install.txt
fixed NextChar() to read the entire character at once as before it stopped on the...
[wxWidgets.git] / docs / gtk / install.txt
... / ...
CommitLineData
1wxWidgets 2.6 for GTK+ installation
2-----------------------------------
3
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 wxWidgets you are
13 using (including the beta) and what compiler on what system. One
14 example: wxGTK 2.6.3, gcc 3.4.5, Fedora Core 4
15
16* The simplest case
17-------------------
18
19If you compile wxWidgets on Linux for the first time and don't like to read
20install instructions just do (in the base dir):
21
22> mkdir buildgtk
23> cd buildgtk
24> ../configure --with-gtk
25> make
26> su <type root password>
27> make install
28> ldconfig
29[if you get "ldconfig: command not found", try using "/sbin/ldconfig"]
30
31If you don't do the 'make install' part, you can still use the libraries from
32the buildgtk directory, but they may not be available to other users.
33
34If you want to remove wxWidgets on Unix you can do this:
35
36> su <type root password>
37> make uninstall
38> ldconfig
39
40Note that by default, GTK+ 2.X is used. GTK+ 1.2 can be specified
41with --with-gtk=1.
42
43* The expert case
44-----------------
45
46If you want to do some more serious cross-platform programming with wxWidgets,
47such as for GTK+ and Motif, you can now build two complete libraries and use
48them concurrently. To do this, create a separate directory for each build
49of wxWidgets - you may also want to create different versions of wxWidgets
50and test them concurrently. Most typically, this would be a version configured
51with --enable-debug and one without. Note, that only one build can
52currently be installed with 'make install', so you'd have to use local version of
53the library for that purpose.
54
55For building three versions (one GTK+, one Motif and a debug version of the GTK
56source) you'd do this:
57
58md buildmotif
59cd buildmotif
60../configure --with-motif
61make
62cd ..
63
64md buildgtk
65cd buildgtk
66../configure --with-gtk
67make
68cd ..
69
70md buildgtkd
71cd buildgtkd
72../configure --with-gtk --enable-debug
73make
74cd ..
75
76* The simplest errors
77---------------------
78
79For any configure errors: please look at config.log file which was generated
80during configure run, it usually contains some useful information.
81
82configure reports, that you don't have GTK+ 1.2 installed although you are
83very sure you have. Well, you have installed it, but you also have another
84version of the GTK+ installed, which you may need to remove including other
85versions of glib (and its headers). Or maybe you installed it in non default
86location and configure can't find it there, so please check that your PATH
87variable includes the path to the correct gtk-config. Also check that your
88LD_LIBRARY_PATH or equivalent variable contains the path to GTK+ libraries if
89they were installed in a non default location.
90
91You get errors from make: please use GNU make instead of the native make
92program. Currently wxWidgets can be built only with GNU make, BSD make and
93Solaris make. Other versions might work or not (any which don't have VPATH
94support definitely won't).
95
96You get errors during compilation: The reason is that you probably have a
97broken compiler. GCC 2.8 and earlier versions and egcs are likely to cause
98problems due to incomplete support for C++ and optimisation bugs. Best to use
99GCC 2.95 or later.
100
101You get immediate segfault when starting any sample or application: This is
102either due to having compiled the library with different flags or options than
103your program - typically you might have the __WXDEBUG__ option set for the
104library but not for your program - or due to using a compiler with optimisation
105bugs.
106
107Linker complains about missing PROIO_yy_flex_alloc and similar symbols: you
108probably have an old version of flex, 2.5.4 is recommended.
109
110* The simplest program
111----------------------
112
113Now create your super-application myfoo.cpp and compile anywhere with
114
115g++ myfoo.cpp `wx-config --libs --cxxflags` -o myfoo
116
117* GUI libraries
118---------------
119
120wxWidgets/GTK+ requires the GTK+ library to be installed on your system. It has
121to be a stable version, preferably GTK+ 2.x.y, where x is an even number.
122GTK+ version 1.2 is highly discouraged, but if you decide to still use it,
123please use version 1.2.10 (at least 1.2.3 is required, 1.2.7 is strongly recommended).
124
125You can get the newest version of the GTK+ from the GTK+ homepage at:
126
127 http://www.gtk.org
128
129We also mirror GTK+ at my ftp site. You'll find information about downloading
130at my homepage.
131
132* Additional libraries
133----------------------
134
135wxWidgets/Gtk requires a thread library and X libraries known to work with
136threads. This is the case on all commercial Unix-Variants and all
137Linux-Versions that are based on glibc 2 except RedHat 5.0 which is broken in
138many aspects. As of writing this, virtually all Linux distributions have
139correct glibc 2 support.
140
141You can disable thread support by running
142
143./configure --disable-threads
144make
145su <type root password>
146make install
147ldconfig
148exit
149
150* Building wxGTK on OS/2
151------------------------
152
153Please send comments and question about the OS/2 installation
154to Stefan Neis <Stefan.Neis@t-online.de> and patches to
155the wxWidgets mailing list.
156
157In the following list, the version numbers indicate the configuration that
158was actually used by myself, newer version should cause no problems and
159even older ones are expected to work most of the time.
160
161You'll need OS/2 Warp (4.51) or eCS(1.0), X-Free86/2 (3.3.6 or newer),
162GTK+ (1.2.5 or newer), emx (0.9d fix 4), flex (2.5.4), yacc (1.8) or
163bison (1.25), a Unix like shell (pdksh-5.2.14 or ash), Autoconf (2.57),
164GNU file utilities (3.13), GNU text utilities (1.19),
165GNU shell utilites (1.12), m4 (1.4), sed (2.05), grep (2.0), Awk (3.0.3),
166GNU Make (3.75).
167
168Preferably, you should have Posix/2 installed and C(PLUS)_INCLUDE_PATH and
169LIBRARY_PATH set up accordingly, however, wxGTK will even work without it.
170Presence of Posix/2 will be auto-detected.
171
172Open an OS/2 prompt and switch to the directory above.
173Set MAKESHELL (and depending on your installation also INSTALL, for me
174it tends to try to use the system's tcpip\pcomos\install.exe which causes
175problems...) to a Unix like shell, e.g.
176SET MAKESHELL=ash
177
178Be warned that depending on the precise version of your make, the
179variable that needs to be set might be MAKE_SHELL instead of MAKESHELL.
180If you have a really deficient version of GNU make, it might even be
181necessary to set SHELL or even COMSPEC to a unix like shell as well.
182
183Notice that the delivered configure scripts are fully OS/2 aware, so you
184can simply run
185 ash -c "configure --with-gtk"
186and make and possibly make install as described above.
187
188* Building wxGTK on SGI
189-----------------------
190
191Using the SGI native compilers, it is recommended that you
192also set CFLAGS and CXXFLAGS before running configure. These
193should be set to :
194
195CFLAGS="-mips3 -n32"
196CXXFLAGS="-mips3 -n32"
197
198This is essential if you want to use the resultant binaries
199on any other machine than the one it was compiled on. If you
200have a 64bit machine (Octane) you should also do this to ensure
201you don't accidently build the libraries as 64bit (which is
202untested).
203
204The SGI native compiler support has only been tested on Irix 6.5.
205
206* Create your configuration
207---------------------------
208
209Usage:
210 ./configure options
211
212If you want to use system's C and C++ compiler,
213set environment variables CC and CCC as
214
215 % setenv CC cc
216 % setenv CXX CC
217 % ./configure [options]
218
219to see all the options please use:
220
221 ./configure --help
222
223It is recommended to build wxWidgets in another directory (maybe a
224subdirectory of your wxWidgets installation) as this allows you to
225have multiple configurations (for example, debug and release or GTK
226and Motif) simultaneously.
227
228
229* General options
230-----------------
231
232Given below are the commands to change the default behaviour,
233i.e. if it says "--disable-threads" it means that threads
234are enabled by default.
235
236Normally, you won't have to choose a toolkit, because when
237you download wxGTK, it will default to --with-gtk etc. But
238if you use all of our CVS repository you have to choose a
239toolkit. You must do this by running configure with either of:
240
241 --with-gtk=2 Use the GTK+ 2.0. Default.
242 --with-gtk=1 Use the GTK+ 1.2.
243 --with-motif Use either Motif or Lesstif
244 Configure will look for both.
245
246The following options handle the kind of library you want to build.
247
248 --disable-threads Compile without thread support.
249
250 --disable-shared Do not create shared libraries, but
251 build static libraries instead.
252
253 --enable-monolithic Build wxWidgets as single library instead
254 of as several smaller libraries (which is
255 the default since wxWidgets 2.5.0).
256
257 --disable-optimise Do not optimise the code. Can
258 sometimes be useful for debugging
259 and is required on some architectures
260 such as Sun with gcc 2.8.X which
261 would otherwise produce segvs.
262
263 --enable-unicode Enable Unicode support.
264
265 --enable-profile Add profiling info to the object
266 files. Currently broken, I think.
267
268 --enable-no_rtti Enable compilation without creation of
269 C++ RTTI information in object files.
270 This will speed-up compilation and reduce
271 binary size.
272
273 --enable-no_exceptions Enable compilation without creation of
274 C++ exception information in object files.
275 This will speed-up compilation and reduce
276 binary size. Also fewer crashes during the
277 actual compilation...
278
279 --enable-no_deps Enable compilation without creation of
280 dependency information.
281
282 --enable-permissive Enable compilation without checking for strict
283 ANSI conformance. Useful to prevent the build
284 dying with errors as soon as you compile with
285 Solaris' ANSI-defying headers.
286
287 --enable-mem_tracing Add built-in memory tracing.
288
289 --enable-dmalloc Use the dmalloc memory debugger.
290 Read more at www.letters.com/dmalloc/
291
292 --enable-debug_info Add debug info to object files and
293 executables for use with debuggers
294 such as gdb (or its many frontends).
295
296 --enable-debug_flag Define __DEBUG__ and __WXDEBUG__ when
297 compiling. This enable wxWidgets' very
298 useful internal debugging tricks (such
299 as automatically reporting illegal calls)
300 to work. Note that program and library
301 must be compiled with the same debug
302 options.
303
304 --enable-debug Same as --enable-debug_info and
305 --enable-debug_flag together. Unless you have
306 some very specific needs, you should use this
307 option instead of --enable-debug_info/flag ones
308 separately.
309
310* Feature Options
311-----------------
312
313When producing an executable that is linked statically with wxGTK
314you'll be surprised at its immense size. This can sometimes be
315drastically reduced by removing features from wxWidgets that
316are not used in your program. The most relevant such features
317are
318
319 --with-odbc Enables ODBC code. This is disabled
320 by default because iODBC is under the
321 L-GPL license which is less liberal than
322 wxWidgets license.
323
324 --without-libpng Disables PNG image format code.
325
326 --without-libjpeg Disables JPEG image format code.
327
328 --without-libtiff Disables TIFF image format code.
329
330 --without-expat Disable XML classes based on Expat parser.
331
332 --disable-pnm Disables PNM image format code.
333
334 --disable-gif Disables GIF image format code.
335
336 --disable-pcx Disables PCX image format code.
337
338 --disable-iff Disables IFF image format code.
339
340 --disable-resources Disables the use of *.wxr type resources.
341
342 --disable-threads Disables threads. Will also disable sockets.
343
344 --disable-sockets Disables sockets.
345
346 --disable-dnd Disables Drag'n'Drop.
347
348 --disable-clipboard Disables Clipboard.
349
350 --disable-serial Disables object instance serialisation.
351
352 --disable-streams Disables the wxStream classes.
353
354 --disable-file Disables the wxFile class.
355
356 --disable-textfile Disables the wxTextFile class.
357
358 --disable-intl Disables the internationalisation.
359
360 --disable-validators Disables validators.
361
362 --disable-accel Disables accelerators support.
363
364Apart from disabling certain features you can very often "strip"
365the program of its debugging information resulting in a significant
366reduction in size.
367
368Please see the output of "./configure --help" for comprehensive list
369of all configurable options.
370
371
372* Compiling
373-----------
374
375The following must be done in the base directory (e.g. ~/wxGTK
376or ~/wxWin or whatever)
377
378Now the makefiles are created (by configure) and you can compile
379the library by typing:
380
381 make
382
383make yourself some coffee, as it will take some time. On an old
384386SX possibly two weeks. During compilation, you'll get a few
385warning messages depending in your compiler.
386
387If you want to be more selective, you can change into a specific
388directory and type "make" there.
389
390Then you may install the library and its header files under
391/usr/local/include/wx and /usr/local/lib respectively. You
392have to log in as root (i.e. run "su" and enter the root
393password) and type
394
395 make install
396
397You can remove any traces of wxWidgets by typing
398
399 make uninstall
400
401If you want to save disk space by removing unnecessary
402object-files:
403
404make clean
405
406in the various directories will do the work for you.
407
408* Creating a new Project
409--------------------------
410
4111) The first way uses the installed libraries and header files
412automatically using wx-config
413
414g++ myfoo.cpp `wx-config --cxxflags --libs` -o myfoo
415
416Using this way, a make file for the minimal sample would look
417like this
418
419CC = gcc
420
421minimal: minimal.o
422 $(CC) -o minimal minimal.o `wx-config --libs`
423
424minimal.o: minimal.cpp mondrian.xpm
425 $(CC) `wx-config --cxxflags` -c minimal.cpp -o minimal.o
426
427clean:
428 rm -f *.o minimal
429
430If your application uses only some of wxWidgets libraries, you can
431specify required libraries when running wx-config. For example,
432`wx-config --libs=html,core` will only output link command to link
433with libraries required by core GUI classes and wxHTML classes. See
434the manual for more information on the libraries.
435
4362) The other way creates a project within the source code
437directories of wxWidgets. For this endeavour, you'll need
438GNU autoconf version 2.14 and add an entry to your Makefile.in
439to the bottom of the configure.in script and run autoconf
440and configure before you can type make.
441
442----------------------
443
444In the hope that it will be useful,
445
446 Robert Roebling
447