root/lyx-devel/branches/BRANCH_1_4_X/INSTALL

Revision 15106, 14.7 kB (checked in by jamatos, 2 years ago)

Change python requirement to 2.2

  • Property svn:eol-style set to native
Line 
1 Compiling and installing LyX
2 ============================
3
4 Quick compilation guide
5 -----------------------
6
7 These four steps will compile, test and install LyX:
8
9         0) Linux users beware: if compiling the Qt frontend, you need
10            qt and qt-devel packages of the same version to compile LyX.
11
12         1) ./configure --with-frontend=[qt or xforms]
13            configures LyX according to your system.
14            When compiling for Qt, you may have to set
15              --with-qt-dir=<path-to-your-qt-installation>
16            if the environment variable QTDIR is not set.
17
18         2) make
19            compiles the program.
20
21         3) src/lyx
22            runs the program so you can check it out.
23
24         4) make install
25            will install it. You can use "make install-strip" instead
26            if you want a smaller binary.
27
28
29 Note for Subversion checkouts
30 -----------------------------
31
32 If you have checked this out from Subversion, you need to have:
33 * automake >= 1.9
34 * autoconf >= 2.52
35 * gettext >= 0.12
36 Then type "./autogen.sh" to build the needed configuration
37 files and proceed as stated below.
38
39 You will also probably need GNU m4 (perhaps installed as gm4).
40
41 Requirements
42 ------------
43
44 First of all, you will also need a recent C++ compiler, where recent
45 means that the compilers are close to C++ standard conforming.
46 Compilers that are known to compile LyX are gcc 2.95.x and later
47 and Digital C++ version 6.1 and later. Please tell us your experience
48 with other compilers.
49
50 It is _not_ possible to compile LyX with gcc 2.7.x and 2.8.x.
51
52 LyX 1.4.x makes great use of C++ Standard Template Library (STL).
53 This means that gcc users will have to install the relevant libstdc++
54 library to be able to compile this version of LyX. Users of gcc 2.95.x
55 will have to install the STLPort version of these libraries as the
56 ones that come with gcc 2.95.x are too broken for us to use.
57
58 * Qt frontend
59
60 LyX has been tested with Qt 3.x, though Qt 2.x may happen to work too.
61 The only special point to make is that you must ensure that both LyX
62 and the Qt libraries are compiled with the same C++ compiler.
63
64 Note that if Qt is using Xft2/fontconfig, you may need to install the
65 latex-xft-fonts package (at ftp://ftp.lyx.org/pub/lyx/contrib/) to get
66 maths symbols displayed properly. To find out, type:
67
68         ldd `which lyx` | grep fontconfig
69
70 at the console. Both RH8 and Debian unstable distributions are known
71 to use fontconfig.
72
73 If, however, your version of Qt does not use fontconfig, then TeX
74 fonts should be added to the font path. 'man xset' is your friend.
75
76 * xforms frontend
77
78 Both an Xforms and Xpm libraries should be installed to compile LyX.
79 It is imperative that you have the correct versions of these
80 libraries, and their associated header files.
81
82 The xforms library has been very recently updated to version 1.0.
83 This version has been released under the LGPL (Lesser General Public
84 License), and the availability of the source means that many bugs that
85 have been plaguing LyX have been fixed in xforms. You are advised to
86 upgrade to xforms 1.0 to enjoy all these new fixes.
87 In fact, LyX 1.4.x no longer supports versions of xforms older than 1.0.
88
89 You can get the source from
90         http://savannah.nongnu.org/download/xforms/
91
92 If you use a rpm-based linux distribution, such as RedHat or Mandrake,
93 we recommend that you grab a version of xforms from
94         ftp://ftp.lyx.org/pub/lyx/contrib
95 Look for the xforms-1.0-release.src.rpm or the binary libforms*.i386.rpm.
96
97 In addition, you must have libXpm version 4.7 or newer.
98
99 * Other things to note
100
101 If you make modifications to files in src/ (for example by applying a
102 patch), you will need to have the GNU gettext package installed, due
103 to some dependencies in the makefiles. You can get the latest version
104 from:
105         ftp://ftp.gnu.org/gnu/gettext/
106
107 To use the thesaurus, you will need to install libAikSaurus, available
108 from:
109         http://aiksaurus.sourceforge.net/
110
111 The two following programs should be available at configuration time:
112
113   o LaTeX2e should be correctly setup for the user you are logged in
114     as. Otherwise, LyX will not be able to run a number of tests. Note
115     that users can run these tests manually with Edit>Reconfigure.
116
117   o Python 2.2 or newer installed.
118
119
120 Creating the Makefile
121 ---------------------
122
123 LyX can be configured using GNU autoconf utility which attempts to guess
124 the configuration needed to suit your system.  The standard way to use it
125 is described in the file INSTALL.autoconf.  In most cases you will be able
126 to create the Makefile by typing
127
128   ./configure
129
130 For more complicated cases, LyX configure takes the following specific
131 flags:
132
133   o --with-frontend=FRONTEND that allows to specify which frontend you
134     want to use. There is no default value: this switch is required.
135
136   o --with-extra-lib=DIRECTORY that specifies the path where LyX will
137     find extra libraries (Xpm, xforms, qt) it needs. Defaults to NONE
138     (i.e. search in standard places). You can specify several
139     directories, separated by colons.
140
141   o --with-extra-inc=DIRECTORY that gives the place where LyX will find
142     extra headers.  Defaults to NONE (i.e.  search in standard places).
143     You can specify several directories, separated by colons.
144
145   o --with-extra-prefix[=DIRECTORY] that is equivalent to
146        --with-extra-lib=DIRECTORY/lib --with-extra-inc=DIRECTORY/include
147     If DIRECTORY is not specified, the current prefix is used.
148
149   o --with-version-suffix will install LyX as lyx-<version>, e.g. lyx-1.4.1
150     The LyX data directory will be something like <whatever>/lyx-1.4.1/.
151     Additionally your user configuration files will be found in e.g.
152     $HOME/.lyx-1.4.1
153
154     You can use this feature to install more than one version of LyX
155     on the same system. You can optionally specify a "version" of your
156     own, by doing something like :
157        ./configure --with-version-suffix=-latestsvn
158
159     Note that the standard configure options --program-prefix,
160     --program-suffix and the others will not affect the shared LyX
161     directory etc. so it is recommended that you use --with-version-suffix
162     (or --prefix) instead.
163
164   o --enable-optimization=VALUE enables you to set optimization to a
165     higher level as the default (-O), for example --enable-optimization=-O3.
166
167   o --disable-optimization - you can use this to disable compiler
168     optimization of LyX. The compile may be much quicker with some
169     compilers, but LyX will run more slowly.
170
171 There are also flags to control the internationalization support in
172 LyX:
173
174   o --disable-nls suppresses all internationalization support,
175     yielding a somewhat smaller code.
176
177   o --with-included-gettext forces the use of the included GNU gettext
178     library, although you might have another one installed.
179
180   o --with-catgets allows to use the catget() functions which can
181     exist on your system.  This can cause problems, though. Use with
182     care.
183
184   o You can also set the environment variable LINGUAS to a list of
185     language in case you do not want to install all the translation
186     files. For example, if you are only interested in German and
187     Finnish, you can type (with sh or bash)
188         export LINGUAS='de fi'
189     before running configure.
190
191 Moreover, the following generic configure flags may be useful:
192
193   o --prefix=DIRECTORY specifies the root directory to use for
194     installation. [defaults to /usr/local]
195
196   o --datadir=DIRECTORY gives the directory where all extra LyX
197     files (lyxrc example, documentation, templates and layouts
198     definitions) will be installed.
199     [defaults to ${prefix}/share/lyx${program_suffix}]
200
201   o --bindir=DIRECTORY gives the directory where the lyx binary
202     will be installed. [defaults to ${prefix}/bin]
203
204   o --mandir=DIRECTORY gives the directory where the man pages will go.
205     [defaults to ${prefix}/man]
206
207   o --enable-maintainer-mode enables some code that automatically
208     rebuilds the configure script, makefiles templates and other useful
209     files when needed. This is off by default on releases, to avoid
210     surprises.
211
212 Note that the --with-extra-* commands are not really robust when it
213 comes to use of relative paths.  If you really want to use a relative path
214 here, you can prepend it with "`pwd`/".
215
216 If you do not like the default compile flags used (-g -O2 on gcc), you can
217 set CXXFLAGS variable to other values as follows:
218
219   o CXXFLAGS='-O2' (sh, bash)
220   o setenv CXXFLAGS '-O2' (csh, tcsh)
221
222 Similarly, if you want to force the use of some specific compiler, you can
223 give a value to the CXX variable.
224
225 If you encounter problems, please read the section 'Problems' at the end of
226 this file.
227
228 In particular, the following options could be useful in some desperate
229 cases:
230
231   o --enable-debug will add debug information to your binary. This
232     requires a lot more disk space, but is a must if you want to try to
233     debug problems in LyX. The default is to have debug information
234     for development versions and prereleases only.
235
236   o --enable-warnings that make the compiler output more warnings during
237     the compilation of LyX.  Opposite is --disable-warnings.  By default,
238     this flag is on for development versions only.
239
240   o --enable-assertions that make the compiler generate run-time
241     code which checks that some variables have sane values. Opposite
242     is --disable-assertions.  By default, this flag is on for
243     development versions only.
244
245   o --enable-stdlib-debug adds some debug code in the standard
246     library; this slows down the code, but has been helpful in the
247     past to find bugs. By default, this flag is on for development
248     versions only.
249
250   o --enable-concept-checks adds some compile-time checks. There is no
251     run-time penalty. By default, this flag is on for development
252     versions only.
253
254   o --without-latex-config that disables the automatic detection of your
255     latex configuration.  This detection is automatically disabled if
256     latex cannot be found.  If you find that you have to use this
257     flag, please report it as a bug.
258
259
260 Compiling and installing LyX
261 ----------------------------
262
263 Once you've got the Makefile created, you just have to type:
264
265   make all
266   make install
267
268 All should be OK ;)
269
270 Since the binaries with debug information tend to be huge (although
271 this does not affect the run-time memory footprint), you might want
272 to strip the lyx binary. In this case replace "make install" with
273
274   make install-strip
275
276 BTW: in the images subdirectory there is also a small icon "lyx.xpm",
277 that can be used to display lyx-documents in filemanagers.
278
279 If configure fails for some strange reason
280 ------------------------------------------
281
282 Even when configure fails, it creates a Makefile.  You always can check
283 the contents of this file, modify it and run 'make'.
284
285 Compiling For Multiple Architectures
286 ------------------------------------
287
288 You can compile LyX for more than one kind of computer at the same
289 time, by placing the object files for each architecture in their own
290 directory.  To do this, you must use a version of `make' that supports
291 the `VPATH' variable, such as GNU `make'.  `cd' to the directory where
292 you want the object files and executables to go and run the
293 `configure' script.  `configure' automatically checks for the source
294 code in the directory that `configure' is in and in `..'.
295
296 If you have to use a `make' that does not supports the `VPATH'
297 variable, you have to compile LyX for one architecture at a time in
298 the source code directory.  After you have installed LyX for one
299 architecture, use `make distclean' before reconfiguring for another
300 architecture.
301
302 Preparing a binary distribution for the use of others
303 ------------------------------------------------------
304
305   o Compile LyX with the right compiler switches for your
306     architecture. Make sure you use the --without-latex-config switch
307     of configure, since others might not be interested by your
308     configuration :-)
309
310   o Create a file README.bin describing your distribution and
311     referring to *you* if problems arise. As a model, you can use the
312     file development/tools/README.bin.example, which can be a good
313     starting point.
314
315   o Type `make bindist'. This will create a file
316     lyx-1.xx.yy-bin.tar.gz. Rename it to reflect you architecture
317     and the peculiarities of your build (e.g. static vs. dynamic).
318
319   o Check that everything is correct by unpacking the distribution
320     in some private place and running it. In particular, check the
321     output of `ldd lyx' to know which libraries are really needed.
322
323   o Upload your binary file to ftp.devel.lyx.org:/pub/incoming, and
324     notify larsbj@lyx.org.
325
326
327 Problems
328 --------
329
330 This section provides several hints that have been submitted by LyX
331 team member or users to help compiling on some particular
332 architectures. If you find that some of this hints are wrong, please
333 notify us.
334
335   o On SUN Sparc Solaris 8, you need gnumake. The LyX makefiles do not
336     work with Solaris make.
337
338     The Solaris ar seg-faults trying to build the insets library. You
339     will need to use the ar from the GNU binutils for this subdirectory.
340
341   o LyX can be compiled on Tru64 Unix with either GNU's gcc or the default
342     Compaq cxx compiler.
343
344     There are no Alpha-specific problems with gcc.
345
346     The following notes all refer to compilation with the Compaq cxx compiler.
347
348     LyX cannot be compiled on Tru64 Unix 4.0d or 4.0e with the default cxx
349     compiler. You should upgrade to at least cxx V6.2, to be found at
350     ftp::/ftp.compaq.com/pub/products/C-CXX/tru64/cxx/CXX622V40.tar. Users
351     running Tru64 Unix 4.0f and greater should have no real problems compiling
352     LyX.
353
354     cxx V6.2 will compile LyX out of the box.
355     cxx V6.3-020 is also known to work, although there is a bug in
356     /usr/include/cxx/deque that will break compilation in FormPreferences.C.
357     Compaq are investigating, but a patch that works /now/ is:
358
359 --- /usr/include/cxx/deque_safe Mon Mar  4 21:09:50 2002
360 +++ /usr/include/cxx/deque      Mon Mar  4 21:09:00 2002
361 @@ -570,9 +570,11 @@
362        {
363          if (size() >= x.size())
364            erase(copy(x.begin(), x.end(), begin()), end());
365 -        else
366 -          copy(x.begin() + size(), x.end(),
367 -               inserter(*this,copy(x.begin(),x.begin()+size(),begin())));
368 +        else {
369 +         const_iterator mid = x.begin() + difference_type(size());
370 +         copy(x.begin(), mid, begin());
371 +         insert(end(), mid, x.end());
372 +       }
373        }
374        return *this;
375      }
376
377     At the time of writing, cxx V6.5-026 is the latest cxx compiler. It is
378     /not/ recommended. The compiler itself appears to be both buggy and
379     extremely bloated (trebling the size of the stripped LyX binary).
380
381     In order to compile LyX with the cxx compiler, you should run configure
382     with the following flags:
383         CXX='cxx -std strict_ansi'
384         CXXFLAGS='-nopure_cname -nocleanup -ptr /tmp/lyx_cxx_repository -O2'
385         CC='cc -std1'
386     The -nopure_cname flag is needed for compilers V6.3 and above because
387     LyX makes use of functions like popen, pclose that are defined in the
388     c version of <stdio.h> but are not formally part of any c/c++ standard.
389     They are not, therefore, included in the <cstdio> header file.
Note: See TracBrowser for help on using the browser.