2 -----------------------
4 If you compile wxWindows on Unix for the first time and don't
5 like to read install instructions just do (in the base dir):
7 ./configure --without-threads
10 and drink 10 coffees. Then you may log in as root and type
14 You can leave out the --without-threads option if you have
15 a NEW Linux distribution based on glibc (e.g. RedHat 5.1 or
16 Debian 2.0) or any other Unix that comes with Posix threads
19 Now create your super-application myfoo.app and compile anywhere
22 g++ myfoo.cpp `wx-config --libs` `wx-config --cflags` -o myfoo
25 -----------------------
27 The Unix variants of wxWindows use GNU configure. If you have
28 problems with your make use GNU make instead.
30 If you have general problems with installation, read my
33 http://wesley.informatik.uni-freiburg.de/~wxxt
35 for newest information. If you still don't have any success,
36 please send a bug report to one of our mailing lists (see
37 my homepage) INCLUDING A DESCRIPTION OF YOUR SYSTEM AND
38 YOUR PROBLEM, SUCH AS YOUR VERSION OF GTK, WXGTK, WHAT
39 DISTRIBUTION YOU USE AND WHAT ERROR WAS REPORTED. I know
40 this has no effect, but I tried...
43 -----------------------
45 wxWindows/GTK requires the GTK+ library to be installed on your system.
46 It has to be a stable version, preferebly version 1.0.6. When using
47 a version previous to 1.0.6 you'll get crashes here and there.
49 wxWindows/GTK does NOT work with the 1.1.X versions of the GTK+ library
50 and we will wait until the 1.2 version comes out and has stabilized
51 until we'll work with that library.
53 You can get the newest version of the GTK+ from the GTK homepage
57 We also mirror GTK+ 1.0.6 at our ftp site. You'll find information
58 about downloading at my homepage.
60 * Additional libraries
61 -----------------------
63 wxWindows/Gtk requires a thread library and X libraries
64 known to work with threads. This is the case on all
65 commercial Unix-Variants and all Linux-Versions that
66 are based on glibc 2 except RedHat 5.0 which is broken
67 in many aspects. As of writing this, these Linux
68 distributions have correct glibc 2 support:
75 The next major version of SuSE will also support glibc 2,
76 but version 5.X does not. Also Caldera and Slackware
77 don't yet support glibc 2.
79 On IRIX you can also use SGI threads if Posix-Threads
80 are not present. The SGI threads will be detected by
81 configure automatically.
83 You can always disable thread support by running
85 ./configure "--without-threads"
89 NB: I included thread support in wxWindows/Gtk, as this
90 problem will disappear in the near future when all major
91 Linux Variants have moved to glibc 2. Also, the Linux
92 Base Standard will include glibc 2.
94 * Create your configuration
95 -----------------------------
100 If you want to use system's C and C++ compiler,
101 set environment variables CC and CCC as
105 % ./configure options
107 Using the SGI native compilers, it is recommended that you
108 also set CFLAGS and CXXFLAGS before running configure. These
112 CXXFLAGS="-mips3 -n32"
114 This is essential if you want to use the resultant binaries
115 on any other machine than the one it was compiled on. If you
116 have a 64bit machine (Octane) you should also do this to ensure
117 you don't accidently build the libraries as 64bit (which is
120 The SGI native compiler support has only been tested on Irix 6.5.
122 to see all the options please use:
126 The basic philosophy is that if you want to use different
127 configurations, like a debug and a release version,
128 or use the same source tree on different systems,
129 you have only to change the environment variable OSTYPE.
130 (Sadly this variable is not set by default on some systems
131 in some shells - on SGI's for example). So you will have to
132 set it there. This variable HAS to be set before starting
133 configure, so that it knows which system it tries to
136 Configure will complain if the system variable OSTYPE has
137 not been defined. And Make in some circumstances as well...
143 Normally, you won't have to choose a toolkit, because when
144 you download wxGTK, it will default to --with-gtk etc. But
145 if you use all of our CVS repository you have to choose a
146 toolkit. You must do this by running configure with either of:
148 --with-gtk Use the GIMP ToolKit (GTK)
150 --with-qt Use Qt from TrollTec
152 --with-motif Use either Motif or Lesstif
153 Configure will look for both.
155 The following options handle the kind of library you want to build.
157 --without-threads Compile without thread support.
159 --without-shared Do not create shared libraries.
161 --without-optimise Do not optimise the code.
163 --with-profile Add profiling info to the object
164 files. Currently broken, I think.
166 --with-mem_tracing Add built-in memory tracing.
167 This doesn't work well with gcc.
169 --with-dmalloc Use the dmalloc memory debugger.
170 Read more at www.letters.com/dmalloc/
172 --with-debug_info Add debug info to object files and
175 --with-debug_flag Define __DEBUG__ and __WXDEBUG__ when
181 As I don't yet care for binary size and target mainly at
182 producing a shared library, wxWindows's configure system auto-
183 matically enables all features, as long as they are already
184 implemented. It is currently NOT possible to disable these
185 options (in contrast to what configure tells you).
190 The following must be done in the base directory (e.g. ~/wxGTK
191 or ~/wxWin or whatever)
193 Now the makefiles are created and you can compile everything
198 make yourself some coffee, as it will try to compile ALL the
199 files in this distribution. During compilation, you'll get
200 a few warning messages.
202 if you want to be more selective:
204 make src will build only the base libraries
205 make samples will build the samples
206 make other will build everything in other
207 make user will build everything in user
209 Then you may install the library and it's header files under
210 /usr/local/include/wx and /usr/local/lib respectively. You
211 have to log in as root (i.e. run "su" and enter the root
216 Depending on the configuration of some files, the libraries
217 and binaries will be placed in different directories.
218 The "global" binaries and libraries will be placed in:
221 lib/$(OSTYPE) respectively
223 "local" binaries and libraries will be placed in:
225 (basedir of that application)/$(OSTYPE).
227 This is also the place where all the object-files will go.
229 If you want to conserve disk space by removing unnecessary
234 will do the work for you.
236 * Creating a new Project
237 --------------------------
239 There are two ways to create your own project:
241 1) The first way uses the installed libraries and header files
242 automatically using wx-config
244 g++ myfoo.cpp `wx-config --libs` `wx-config --cflags` -o myfoo
246 Using this way, a make file for the minimal sample would look
252 $(CC) -o minimal minimal.o `wx-config --libs`
254 minimal.o: minimal.cpp mondrian.xpm
255 $(CC) `wx-config --cflags` -c minimal.cpp -o minimal.o
260 This is certain to become the standard way unless we decide
263 2) The other way creates a project within the source code
264 directories of wxWindows: In this case I propose to put
265 all contributed programs in the directory "/user", with a
266 directory of its own.
268 This directory then should include the following files:
270 Makefile (You can copy this one from any application in samples
271 probably you will not need to edit this one. There is
272 only one case where you might be interested in changing
273 this file, but about that see later.)
274 Makefile.in (This is the base application-Makefile template, from
275 which the actual Makefile for each system is created.
276 More about this later)
278 put ALL your source code along with all the other stuff you need for
279 your application in this directory (subdirectories are welcome).
282 ** Something about Makefiles
283 ------------------------------
285 On general principle it should only contain ONE line, which is as follows:
287 include ../../setup/general/makeapp
289 this will include all the necessary definitions for creating the applications
291 the only case where you might want to add another line is the following:
292 this version of configure also supports creation of source archives of the
293 application for easy distribution and updates to newer version of wxWindows.
294 For this purpose all files in the application-directory will be put into
295 a gziped tar-file in the full notation user/<your application>/*
296 if you want to include some other files that you want "more visible", like
297 a README.<yourApp> or a shell script for easy
298 compilation/installation/distribution, then you have to add a variable
300 DISTRIBUTE_ADDITIONAL=<your files>
303 So it would look like this:
305 DISTRIBUTE_ADDITIONAL=README.TheApp
306 include ../../setup/general/makeapp
308 As we have already talked about distribution the command to create a
313 NOTE: If you are in the base directory of wxWindows it will create
314 distribution packages for wxWindows as well as for all packages in the
316 So if you want to create only packages for the files in user,
317 then go to the directory other and type:
321 or if you only want one application to be created then
322 enter the specific directory and type there:
325 All the distribution files will be put in the directory
326 distrib at the base of the wxWindows-tree (where also configure
327 and template.mak can be found).
329 ** Something about Makefile.in
330 --------------------------------
332 As you have already seen with Makefile, configure makes a lot of use
333 if the include statement in make to keep the Makefiles as simple as
336 So basically there are only variables to define and then a include command.
337 Exception to this rule is if you have special rules for some stuff...
338 These rules should go AFTER the include statement!!!
340 so the general header looks like this:
342 # wxWindows base directory
343 WXBASEDIR=@WXBASEDIR@
344 # set the OS type for compilation
346 # compile a library only
349 and the general footer will look like this:
351 # include the definitions now
352 include ../../../template.mak
354 the key variable is RULE, which defines what make should create
357 here are some examples:
360 ===========================================================================
361 bin creates a local binary (for a global binary prefix bin with g)
362 additional variables needed:
363 BIN_TARGET this gives the name of your application
364 BIN_OBJ this gives the object files needed to
366 optional variables are:
367 BIN_SRC this gives the list of c/c++ files for
368 which dependencies will be checked.
369 (This can be achieved with: make depend)
370 BIN_LINK this gives commands for additional
371 libraries needed to link the application
372 ---------------------------------------------------------------------------
373 bin2 creates two local binaries (for global binaries prefix bin2 with g)
374 in addition to the variables specified above you MUST also
375 provide the same variables with BIN2_ instead of BIN_
376 ---------------------------------------------------------------------------
377 lib creates a local library (for a global binary prefix bin with g)
378 additional variables needed:
379 LIB_TARGET this gives the name of your library
380 LIB_OBJ this gives the object files needed for
381 the library to be build.
382 optional variables are:
383 LIB_SRC this gives the list of c/c++ files for
384 which dependencies will be checked.
385 libbin and libgbin are also possible and will need in addition
386 the variables from bin
387 ---------------------------------------------------------------------------
388 gslib is similar to lib, but it creates a shared library if the system
390 additional variables needed:
391 LIB_MAJOR major number of the shared library
392 LIB_MINOR minor number of the shared library
393 ---------------------------------------------------------------------------
394 other additional variables:
396 ADD_COMPILE define additional includes/defines that
397 are needed to compile the object files
398 (if you need to reference some directory
399 utils - like wxGrid -, then please
400 reference them with the variables defined
401 in template.mak - e.g.: $(SRCDIR),$(UTILS),
402 $(SAMPLES),$(OTHERS))
404 NEEDED_DEFINES lists all the defines that HAVE to be set in
405 /include/wx/setup.h to compile correctly.
407 SRC_DIR lists all directories that are needed to
408 compile. (i.e: lists all the directories,
409 where there are source-files.) But it is
410 also needed to clean an object and for
411 machines, for which make does not support
414 currently there are the following compiling rules provided:
415 object files are created for the following file extensions:
418 Please have a closer look at the Makefiles in this distribution.
420 * Platforms configure is working with
421 ---------------------------------------
423 Please report build succes on any machine. Especially non-
424 Linux operating systems (which I don't have).
426 Original author of the autoconf system for wxxt-1.66 and for this INSTALL
429 Martin Sperl sperl@dsn.ast.univie.ac.at
433 Wolfram Gloger wmglo@dent.med.uni-muenchen.de
435 Thanks alot to both of them.
437 In the hope that it will be useful,
439 Robert Roebling roebling@sun2.ruf.uni-freiburg.de