1999-09-27 18:44:28 +00:00
|
|
|
Compiling and installing LyX
|
|
|
|
============================
|
|
|
|
|
|
|
|
Quick compilation guide
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
These four steps will compile, test and install LyX:
|
|
|
|
|
2013-03-19 15:17:40 +00:00
|
|
|
0) Linux users beware: You need qt4 and qt4-devel packages
|
2010-08-05 15:18:18 +00:00
|
|
|
of the same version to compile LyX.
|
2003-02-27 15:55:55 +00:00
|
|
|
|
2011-06-06 10:32:16 +00:00
|
|
|
In general, it is also recommended to have pkg-config
|
2013-03-19 15:17:40 +00:00
|
|
|
installed (the name might vary depending on your
|
2011-06-06 10:32:16 +00:00
|
|
|
distribution).
|
|
|
|
|
|
|
|
1) ./configure configures LyX according to your system. You
|
|
|
|
may have to set --with-qt4-dir=<path-to-your-qt4-installation>
|
|
|
|
(for example, "--with-qt4-dir=/usr/share/qt4/") if the
|
|
|
|
environment variable QTDIR is not set and pkg-config is not
|
|
|
|
available.
|
2013-01-30 03:36:48 +00:00
|
|
|
|
2008-07-07 14:18:44 +00:00
|
|
|
See Note below if ./configure script is not present.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
2) make
|
|
|
|
compiles the program.
|
|
|
|
|
|
|
|
3) src/lyx
|
|
|
|
runs the program so you can check it out.
|
|
|
|
|
|
|
|
4) make install
|
2000-06-08 13:55:33 +00:00
|
|
|
will install it. You can use "make install-strip" instead
|
2003-02-06 10:54:14 +00:00
|
|
|
if you want a smaller binary.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2012-06-21 09:14:18 +00:00
|
|
|
Note for Git checkouts
|
2006-02-24 11:14:04 +00:00
|
|
|
-----------------------------
|
2002-03-26 10:13:36 +00:00
|
|
|
|
2012-06-21 09:14:18 +00:00
|
|
|
If you have checked this out from Git, you need to have:
|
2010-04-07 10:59:57 +00:00
|
|
|
* automake >= 1.8
|
2013-01-21 09:15:27 +00:00
|
|
|
* autoconf >= 2.59d
|
2011-06-06 10:32:16 +00:00
|
|
|
* gettext >= 0.16.1
|
2005-02-23 14:54:20 +00:00
|
|
|
Then type "./autogen.sh" to build the needed configuration
|
2012-11-01 17:06:26 +00:00
|
|
|
files and proceed as stated above/below.
|
2002-03-26 10:13:36 +00:00
|
|
|
|
|
|
|
You will also probably need GNU m4 (perhaps installed as gm4).
|
2003-02-06 10:54:14 +00:00
|
|
|
|
2010-08-05 15:18:18 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
Requirements
|
|
|
|
------------
|
|
|
|
|
2013-01-30 03:36:48 +00:00
|
|
|
First of all, you will need a recent C++ compiler, where recent means
|
|
|
|
that the compilers are close to C++ standard conforming (gcc 4.x).
|
2005-02-23 14:54:20 +00:00
|
|
|
|
2013-01-30 03:36:48 +00:00
|
|
|
LyX makes great use of the C++ Standard Template Library (STL).
|
2005-02-23 14:54:20 +00:00
|
|
|
This means that gcc users will have to install the relevant libstdc++
|
2013-03-19 15:17:40 +00:00
|
|
|
library to be able to compile this version of LyX.
|
2002-03-26 10:13:36 +00:00
|
|
|
|
2012-11-04 01:02:16 +00:00
|
|
|
For full LyX usability we suggest to use at least Qt 4.8 which has been
|
2010-11-10 15:54:54 +00:00
|
|
|
widely tested. For compilation you need to compile against at least
|
2012-11-04 01:02:16 +00:00
|
|
|
Qt 4.5.0. The only special point to make is that you must ensure that both
|
2010-11-10 15:54:54 +00:00
|
|
|
LyX and the Qt libraries are compiled with the same C++ compiler.
|
2005-07-18 09:42:42 +00:00
|
|
|
|
2010-11-13 12:09:23 +00:00
|
|
|
To build LyX with spell checking capabilities included you have to
|
|
|
|
install at least one of the development packages of the spell checker
|
|
|
|
libraries. See the RELEASE-NOTES for details.
|
|
|
|
|
|
|
|
|
2003-02-06 10:54:14 +00:00
|
|
|
* Other things to note
|
2003-01-26 16:57:47 +00:00
|
|
|
|
2001-07-05 14:00:36 +00:00
|
|
|
If you make modifications to files in src/ (for example by applying a
|
|
|
|
patch), you will need to have the GNU gettext package installed, due
|
2003-01-26 16:57:47 +00:00
|
|
|
to some dependencies in the makefiles. You can get the latest version
|
2001-07-05 14:00:36 +00:00
|
|
|
from:
|
2005-07-18 09:42:42 +00:00
|
|
|
ftp://ftp.gnu.org/gnu/gettext/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-02-04 13:47:58 +00:00
|
|
|
The two following programs should be available at configuration time:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-03-26 10:13:36 +00:00
|
|
|
o LaTeX2e should be correctly setup for the user you are logged in
|
1999-09-27 18:44:28 +00:00
|
|
|
as. Otherwise, LyX will not be able to run a number of tests. Note
|
2008-02-11 15:11:15 +00:00
|
|
|
that users can run these tests manually with Tools>Reconfigure.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2011-08-29 14:36:37 +00:00
|
|
|
o Python 2.4 or newer must be installed. Python is used for many
|
|
|
|
simple tasks that are executed by external scripts, such as the
|
|
|
|
automatic configuration step and the import of older LyX documents
|
2005-07-16 15:18:14 +00:00
|
|
|
with the lyx2lyx script (this script is called automatically when
|
2010-11-06 23:24:50 +00:00
|
|
|
opening a file). Python 3.0 or later is not supported.
|
2003-02-04 13:47:58 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
Creating the Makefile
|
|
|
|
---------------------
|
|
|
|
|
2003-02-06 10:54:14 +00:00
|
|
|
LyX can be configured using GNU autoconf utility which attempts to guess
|
|
|
|
the configuration needed to suit your system. The standard way to use it
|
|
|
|
is described in the file INSTALL.autoconf. In most cases you will be able
|
1999-09-27 18:44:28 +00:00
|
|
|
to create the Makefile by typing
|
|
|
|
|
|
|
|
./configure
|
|
|
|
|
2011-01-25 11:22:47 +00:00
|
|
|
For more complicated cases, LyX configure honors the following specific
|
1999-09-27 18:44:28 +00:00
|
|
|
flags:
|
|
|
|
|
2011-01-25 13:49:49 +00:00
|
|
|
o --enable-build-type=[rel(ease), pre(release), dev(elopment), prof(iling), gprof]
|
2008-02-12 10:10:54 +00:00
|
|
|
allows to tweak the compiled code. The following table describes
|
|
|
|
the settings in terms of various options that are described later
|
|
|
|
|
2011-01-25 13:49:49 +00:00
|
|
|
release prerelease development profiling gprof
|
|
|
|
optimization -O2 -O2 -O -O2 -O2
|
2008-02-12 10:10:54 +00:00
|
|
|
assertions X X
|
|
|
|
stdlib-debug X
|
|
|
|
concept-checks X X
|
|
|
|
warnings X X
|
2011-01-25 13:49:49 +00:00
|
|
|
debug X X X X
|
2008-02-12 10:10:54 +00:00
|
|
|
|
2013-01-30 03:36:48 +00:00
|
|
|
The defaults are as follows in terms of version number
|
2008-02-12 10:10:54 +00:00
|
|
|
release: stable release (1.x.y)
|
|
|
|
prerelease: version number contains alpha, beta, rc or pre.
|
2012-11-01 17:06:26 +00:00
|
|
|
development: version number contains dev.
|
2008-02-11 15:11:15 +00:00
|
|
|
|
2013-03-19 15:17:40 +00:00
|
|
|
The `profiling' build type uses the -fno-omit-frame-pointer option with gcc
|
|
|
|
|
|
|
|
The `gprof' build type compiles and links with -pg option with gcc.
|
|
|
|
|
2003-02-18 17:23:55 +00:00
|
|
|
o --with-extra-lib=DIRECTORY that specifies the path where LyX will
|
2006-10-22 18:05:16 +00:00
|
|
|
find extra libraries (qt4) it needs. Defaults to NONE
|
2003-02-18 17:23:55 +00:00
|
|
|
(i.e. search in standard places). You can specify several
|
|
|
|
directories, separated by colons.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
o --with-extra-inc=DIRECTORY that gives the place where LyX will find
|
2006-01-19 12:23:00 +00:00
|
|
|
extra headers. Defaults to NONE (i.e. search in standard places).
|
1999-09-27 18:44:28 +00:00
|
|
|
You can specify several directories, separated by colons.
|
|
|
|
|
|
|
|
o --with-extra-prefix[=DIRECTORY] that is equivalent to
|
|
|
|
--with-extra-lib=DIRECTORY/lib --with-extra-inc=DIRECTORY/include
|
2000-01-10 16:28:29 +00:00
|
|
|
If DIRECTORY is not specified, the current prefix is used.
|
|
|
|
|
2008-09-29 08:58:24 +00:00
|
|
|
o --with-version-suffix[=SUFFIX] will install LyX as lyxSUFFIX. The
|
|
|
|
LyX data directory will be something like <whatever>/lyxSUFFIX/.
|
|
|
|
Additionally your user configuration files will be found in e.g.
|
|
|
|
$HOME/.lyxSUFFIX. The default for SUFFIX is "-<currentversion>",
|
|
|
|
e.g. lyx-1.6.1.
|
2001-03-01 15:03:52 +00:00
|
|
|
|
2003-02-18 17:23:55 +00:00
|
|
|
You can use this feature to install more than one version of LyX
|
|
|
|
on the same system. You can optionally specify a "version" of your
|
2004-10-26 21:16:44 +00:00
|
|
|
own, by doing something like :
|
2012-11-01 17:06:26 +00:00
|
|
|
./configure --with-version-suffix=-latestdev
|
2001-07-25 15:05:10 +00:00
|
|
|
|
2003-02-18 17:23:55 +00:00
|
|
|
Note that the standard configure options --program-prefix,
|
|
|
|
--program-suffix and the others will not affect the shared LyX
|
|
|
|
directory etc. so it is recommended that you use --with-version-suffix
|
|
|
|
(or --prefix) instead.
|
2002-05-29 15:10:11 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
There are also flags to control the internationalization support in
|
|
|
|
LyX:
|
|
|
|
|
|
|
|
o --disable-nls suppresses all internationalization support,
|
2013-01-30 03:36:48 +00:00
|
|
|
yielding somewhat smaller code.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
o You can also set the environment variable LINGUAS to a list of
|
2013-01-30 03:36:48 +00:00
|
|
|
languages in case you do not want to install all the translation
|
1999-09-27 18:44:28 +00:00
|
|
|
files. For example, if you are only interested in German and
|
|
|
|
Finnish, you can type (with sh or bash)
|
|
|
|
export LINGUAS='de fi'
|
|
|
|
before running configure.
|
|
|
|
|
|
|
|
Moreover, the following generic configure flags may be useful:
|
|
|
|
|
|
|
|
o --prefix=DIRECTORY specifies the root directory to use for
|
2001-11-12 14:29:14 +00:00
|
|
|
installation. [defaults to /usr/local]
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-02-06 10:54:14 +00:00
|
|
|
o --datadir=DIRECTORY gives the directory where all extra LyX
|
2006-11-09 17:40:44 +00:00
|
|
|
files (documentation, templates and layout definitions)
|
|
|
|
will be installed.
|
1999-09-27 18:44:28 +00:00
|
|
|
[defaults to ${prefix}/share/lyx${program_suffix}]
|
|
|
|
|
|
|
|
o --bindir=DIRECTORY gives the directory where the lyx binary
|
|
|
|
will be installed. [defaults to ${prefix}/bin]
|
|
|
|
|
|
|
|
o --mandir=DIRECTORY gives the directory where the man pages will go.
|
|
|
|
[defaults to ${prefix}/man]
|
|
|
|
|
2004-04-06 13:48:13 +00:00
|
|
|
o --enable-maintainer-mode enables some code that automatically
|
2003-03-28 17:35:32 +00:00
|
|
|
rebuilds the configure script, makefiles templates and other useful
|
2004-10-08 12:12:22 +00:00
|
|
|
files when needed. This is off by default on releases, to avoid
|
|
|
|
surprises.
|
2003-03-28 17:35:32 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
Note that the --with-extra-* commands are not really robust when it
|
2013-01-30 03:36:48 +00:00
|
|
|
comes to using relative paths. If you really want to use a relative path
|
2003-02-06 10:54:14 +00:00
|
|
|
here, you can prepend it with "`pwd`/".
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-02-06 10:54:14 +00:00
|
|
|
If you do not like the default compile flags used (-g -O2 on gcc), you can
|
1999-09-27 18:44:28 +00:00
|
|
|
set CXXFLAGS variable to other values as follows:
|
|
|
|
|
|
|
|
o CXXFLAGS='-O2' (sh, bash)
|
|
|
|
o setenv CXXFLAGS '-O2' (csh, tcsh)
|
|
|
|
|
2013-01-30 03:36:48 +00:00
|
|
|
Similarly, if you want to force the use of a specific compiler, you can
|
1999-09-27 18:44:28 +00:00
|
|
|
give a value to the CXX variable.
|
|
|
|
|
2003-02-06 10:54:14 +00:00
|
|
|
If you encounter problems, please read the section 'Problems' at the end of
|
|
|
|
this file.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2013-03-19 15:17:40 +00:00
|
|
|
The following options allow you to tweak the generated code more precisely (see the description of --enable-build-type for the default values):
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2008-02-11 15:11:15 +00:00
|
|
|
o --enable-optimization=VALUE enables you to set optimization to a
|
2013-03-19 15:17:40 +00:00
|
|
|
higher level than the default, for example --enable-optimization=-O3.
|
2008-02-11 15:11:15 +00:00
|
|
|
|
|
|
|
o --disable-optimization - you can use this to disable compiler
|
|
|
|
optimization of LyX. The compile may be much quicker with some
|
|
|
|
compilers, but LyX will run more slowly.
|
|
|
|
|
2006-01-19 12:23:00 +00:00
|
|
|
o --enable-debug will add debug information to your binary. This
|
2013-03-19 15:17:40 +00:00
|
|
|
requires a lot more disk space, but is a must if you want to try
|
|
|
|
to debug problems in LyX. There is no run-time penalty.
|
2006-01-19 12:23:00 +00:00
|
|
|
|
2001-07-25 15:05:10 +00:00
|
|
|
o --enable-warnings that make the compiler output more warnings during
|
2013-03-19 15:17:40 +00:00
|
|
|
the compilation of LyX. Opposite is --disable-warnings.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-03-26 10:13:36 +00:00
|
|
|
o --enable-assertions that make the compiler generate run-time
|
2000-04-19 16:32:36 +00:00
|
|
|
code which checks that some variables have sane values. Opposite
|
2013-03-19 15:17:40 +00:00
|
|
|
is --disable-assertions.
|
1999-12-16 14:16:42 +00:00
|
|
|
|
2006-01-19 12:23:00 +00:00
|
|
|
o --enable-stdlib-debug adds some debug code in the standard
|
|
|
|
library; this slows down the code, but has been helpful in the
|
2013-03-19 15:17:40 +00:00
|
|
|
past to find bugs.
|
2006-01-19 12:23:00 +00:00
|
|
|
|
|
|
|
o --enable-concept-checks adds some compile-time checks. There is no
|
2013-03-19 15:17:40 +00:00
|
|
|
run-time penalty.
|
2006-01-19 12:23:00 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
o --without-latex-config that disables the automatic detection of your
|
1999-12-16 14:16:42 +00:00
|
|
|
latex configuration. This detection is automatically disabled if
|
|
|
|
latex cannot be found. If you find that you have to use this
|
2003-02-06 10:54:14 +00:00
|
|
|
flag, please report it as a bug.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2009-04-03 14:32:40 +00:00
|
|
|
o --enable-monolithic-build[=boost,client,insets,mathed,core,tex2lyx,frontend-qt4]
|
2009-04-09 16:25:26 +00:00
|
|
|
that enables monolithic build of the given parts of the source
|
|
|
|
code. This should reduce the compilation time provided you have
|
|
|
|
enough memory (>500MB).
|
2008-02-13 20:30:31 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
Compiling and installing LyX
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
Once you've got the Makefile created, you just have to type:
|
|
|
|
|
|
|
|
make all
|
|
|
|
make install
|
|
|
|
|
|
|
|
All should be OK ;)
|
|
|
|
|
2000-06-08 13:55:33 +00:00
|
|
|
Since the binaries with debug information tend to be huge (although
|
2002-03-26 10:13:36 +00:00
|
|
|
this does not affect the run-time memory footprint), you might want
|
2000-06-08 13:55:33 +00:00
|
|
|
to strip the lyx binary. In this case replace "make install" with
|
|
|
|
|
|
|
|
make install-strip
|
|
|
|
|
2007-08-30 20:09:12 +00:00
|
|
|
BTW: in the images subdirectory there is also a small icon "lyx.png",
|
1999-09-27 18:44:28 +00:00
|
|
|
that can be used to display lyx-documents in filemanagers.
|
|
|
|
|
|
|
|
If configure fails for some strange reason
|
|
|
|
------------------------------------------
|
|
|
|
|
2013-01-30 03:36:48 +00:00
|
|
|
Even when configure fails, it creates a Makefile. You can always check
|
1999-09-27 18:44:28 +00:00
|
|
|
the contents of this file, modify it and run 'make'.
|
|
|
|
|
|
|
|
Compiling For Multiple Architectures
|
|
|
|
------------------------------------
|
|
|
|
|
|
|
|
You can compile LyX for more than one kind of computer at the same
|
|
|
|
time, by placing the object files for each architecture in their own
|
|
|
|
directory. To do this, you must use a version of `make' that supports
|
|
|
|
the `VPATH' variable, such as GNU `make'. `cd' to the directory where
|
|
|
|
you want the object files and executables to go and run the
|
|
|
|
`configure' script. `configure' automatically checks for the source
|
|
|
|
code in the directory that `configure' is in and in `..'.
|
|
|
|
|
|
|
|
If you have to use a `make' that does not supports the `VPATH'
|
|
|
|
variable, you have to compile LyX for one architecture at a time in
|
|
|
|
the source code directory. After you have installed LyX for one
|
|
|
|
architecture, use `make distclean' before reconfiguring for another
|
|
|
|
architecture.
|
|
|
|
|
|
|
|
Problems
|
|
|
|
--------
|
|
|
|
|
|
|
|
This section provides several hints that have been submitted by LyX
|
2013-01-30 03:36:48 +00:00
|
|
|
team members or users to help compiling on some particular
|
|
|
|
architectures. If you find that some of these hints are wrong, please
|
1999-09-27 18:44:28 +00:00
|
|
|
notify us.
|
|
|
|
|
2008-02-11 15:11:15 +00:00
|
|
|
o On SUN Sparc Solaris, you need gnumake. The LyX makefiles do not
|
2003-08-27 19:06:37 +00:00
|
|
|
work with Solaris make.
|
|
|
|
|
2008-02-11 22:39:15 +00:00
|
|
|
The Solaris 8 ar seg-faults trying to build the insets library. You
|
2003-08-27 19:06:37 +00:00
|
|
|
will need to use the ar from the GNU binutils for this subdirectory.
|
2008-02-11 22:39:15 +00:00
|
|
|
There is no problem with the Solaris 9 and 10 ar.
|
|
|
|
|
|
|
|
Qt4 uses the Xrender X11 extension for antialiased fonts. This
|
|
|
|
extension was added to Xsun starting from the Solaris 10 8/07
|
|
|
|
release, but it is not activated by default. To activate it, you
|
|
|
|
must issue (as root) the following command:
|
|
|
|
svccfg -s svc:/application/x11/x11-server setprop options/server_args=+xrender
|
|
|
|
and then restart the X server.
|
|
|
|
|
|
|
|
There is a problem with the fontconfig library shipped with
|
|
|
|
Solaris 10 8/07 causing a seg-fault when it is used by Qt4.
|
|
|
|
Until this is fixed, a workaround is replacing the shared library
|
|
|
|
/usr/lib/libfontconfig.so.1 with a copy from a previous release or
|
|
|
|
installing a new version of fontconfig from http://www.sunfreeware.com/
|
|
|
|
|
|
|
|
On Solaris, the default fontconfig configuration gives preference
|
|
|
|
to bitmap fonts at (not so small) sizes. As bitmapped fonts are not
|
|
|
|
antialiased, you may prefer changing this configuration. This may be
|
|
|
|
done by adding the following stanza
|
|
|
|
|
|
|
|
<match target="pattern">
|
|
|
|
<edit name="prefer_bitmap">
|
|
|
|
<bool>false</bool>
|
|
|
|
</edit>
|
|
|
|
</match>
|
|
|
|
|
|
|
|
to either ~/.fonts.conf (for a per-user change) or /etc/fonts/local.conf
|
|
|
|
(for a global system change). The stanza should be added between the
|
|
|
|
<fontconfig> and </fontconfig> tags. If neither ~/.fonts.conf nor
|
2013-01-30 03:36:48 +00:00
|
|
|
/etc/fonts/local.conf exists, you can create them with the following
|
2008-02-11 22:39:15 +00:00
|
|
|
content:
|
|
|
|
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
|
|
<fontconfig>
|
|
|
|
<match target="pattern">
|
|
|
|
<edit name="prefer_bitmap">
|
|
|
|
<bool>false</bool>
|
|
|
|
</edit>
|
|
|
|
</match>
|
|
|
|
</fontconfig>
|
2003-08-27 19:06:37 +00:00
|
|
|
|