]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/INSTALL.texi
* Documentation/topdocs/INSTALL.texi: update vim-mode installing orders.
[lilypond.git] / Documentation / topdocs / INSTALL.texi
1 @node Top, , , (dir)
2 @top
3 @comment  node-name,  next,  previous,  up\input texinfo @c -*-texinfo-*-
4 @setfilename INSTALL.info
5 @settitle INSTALL - compiling and installing GNU LilyPond
6
7 @contents
8
9 @chapter Compiling and installing on Unix
10
11
12 @html
13 <a name="download-source">
14 @end html
15
16 @section Downloading
17
18 Even numbered versions are `stable' (2.0, 1.8 etc), while odd version
19 are development releases (2.1, 1.9, etc).  Building LilyPond is an
20 involved process, so if possible, download a precompiled binary from
21 @uref{http://www.lilypond.org/,the lilypond site}.
22
23
24 @subsection Source code
25
26 Download source tarballs from here:
27 @itemize @bullet
28 @item Download development releases from
29 @uref{http://www.lilypond.org/download/} by HTTP.
30 @item @uref{ftp://sca.uwaterloo.ca/pub/} by FTP (Canadian mirror).
31 @end itemize
32
33
34 Use Xdelta to patch tarballs, e.g. to patch  
35 @file{lilypond-1.4.2.tar.gz} to @file{lilypond-1.4.3.tar.gz}, do
36 @example
37         xdelta patch lilypond-1.4.2-1.4.3.xd lilypond-1.4.2.tar.gz
38 @end example
39
40 For information on packaging and CVS, see  
41 @uref{http://lilypond.org/}, under ``development''.
42
43
44 @subsection Precompiled binaries
45
46 Check out @uref{http://lilypond.org} for up to date information on
47 binary packages.
48
49
50 @subsection Font problems
51
52 If you are upgrading from a previous version of LilyPond, be sure to
53 remove all old font files. These include @file{.pk} and @file{.tfm} files
54 that may be located in @file{/var/lib/texmf}, @file{/var/spool/texmf},
55 @file{/var/tmp/texmf} or @file{@var{prefix}/share/lilypond/fonts/}.  A
56 script automating this has been included, see
57 @file{buildscripts/clean-fonts.sh}.
58
59
60
61
62 @section Requirements
63
64 @subsection Compilation
65
66 You need the following packages to compile LilyPond:
67
68 @itemize
69
70 @item @uref{http://www.xs4all.nl/~hanwen/mftrace/,mftrace} (1.0.17 or
71 newer),
72
73   You will need to install some additional packages to get mftrace to
74 work.
75
76 @item @uref{http://www.gnu.org/software/guile/guile.html,GUILE} (version 1.6.0 or newer).
77
78 @item  @uref{http://www.gnu.org/software/flex/,Flex} (version 2.5.4a or newer). 
79
80 WARNING: plain Flex 2.5.4(a) generates invalid C++ code.  GCC 3.x
81 chokes on this.  If you wish to use GCC 3.x, make sure that your
82 distribution supports g++ 3.x and flex.  For workarounds, see
83 lexer-gcc-3.1.sh in the source directory.
84
85 @item @TeX{}.
86
87 @TeX{} is used as an output backend.
88
89 Also, @TeX{}'s libkpathsea is used to find the fonts (@file{.mf},
90 @file{.afm}, @file{.tfm}).  Make sure you have tetex 1.0 or newer
91 (1.0.6 is known to work).  You may need to install a tetex-devel (or
92 tetex-dev or libkpathsea-dev) package too.
93
94 @item @uref{ftp://ftp.gnu.org/gnu/texinfo/,Texinfo} (version 4.6 or newer).
95
96 @item The
97 @uref{ftp://ftp.ctan.org/tex-archive/macros/latex/contrib/supported/geometry,geometry
98 package for LaTeX}.
99
100  This package is normally included with the @TeX{} distribution.
101
102 @item kpathsea, a library for searching (@TeX{}) files.
103
104 @item
105  @uref{http://gcc.gnu.org/, The GNU c++ compiler} (version 3.1 or
106 newer).  EGCS and 2.x are known to cause crashes.
107
108 @item @uref{http://www.python.org,Python} (version 2.1 or newer).
109
110 @item @uref{ftp://ftp.gnu.org/gnu/make/,GNU Make} (version 3.78 or newer).
111
112 @item @uref{http://www.gnu.org/software/bison/,Bison} (version 1.25 or
113 newer, but not 1.50 or 1.75).
114 @end itemize
115
116 @subsection Running requirements
117
118 GNU LilyPond does use a lot of resources. For operation you need the
119 following software:
120
121 @itemize @bullet
122 @item @TeX{}.
123 @item Xdvi and Ghostscript.
124 @item @uref{http://www.gnu.org/software/guile/guile.html,GUILE} 1.6.0, or newer.
125 @end itemize
126
127 You have to help @TeX{} and MetaFont find LilyPond support
128 files. After compiling, scripts to do this can be found in
129 @file{buildscripts/out/lilypond-profile} and
130 @file{buildscripts/out/lilypond-login}.
131
132 @subsection Building documentation
133
134 You can view the documentation online at
135 @uref{http://www.lilypond.org/doc/}, but you can also build it
136 locally. This process requires a successful compile of lilypond. The
137 documentation is built by issuing:
138 @example 
139         make web
140 @end example 
141
142 Building the website requires some additional tools: 
143
144 @itemize @bullet
145 @item The @uref{http://netpbm.sourceforge.net/,netpbm utilities} 
146 @item ImageMagick
147 @end itemize
148
149 The HTML files can be installed into the standard documentation path
150 by issuing
151
152 @example
153         make out=www web-install
154 @end example
155
156
157 @section Building LilyPond
158
159 To install GNU LilyPond, type
160 @example 
161 gunzip -c lilypond-x.y.z | tar xf -
162 cd lilypond-x.y.z
163 ./configure             # run with --help to see appropriate options
164 make
165 make install
166 sh buildscripts/clean-fonts.sh      
167 @end example 
168
169 The most time-consuming part of compiling LilyPond is tracing the
170 Type1 fonts. You can shortcut this operation by issuing
171 one of the following commands:
172
173 @example
174   make -C mf get-pfa                # requires rpm2cpio
175   make -C mf get-debian-pfa         # may not be up to date   
176 @end example
177
178 If you are doing an upgrade, you should remove all @file{feta}
179 @code{.pk} and @code{.tfm} files.  A script has been provided to do the
180 work for you, see @file{buildscripts/clean-fonts.sh}.
181
182 If you are not root, you should choose a @code{--prefix} argument that
183 points into your home directory, e.g.:
184 @example 
185         ./configure --prefix=$HOME/usr
186 @end example 
187
188 In this case, you have to insert the contents of
189 @code{buildscripts/out/lilypond-login} or
190 @code{buildscripts/out/lilypond-profile} into your start up scripts by
191 hand.
192
193
194
195 @subsection Configuring for multiple platforms
196
197 If you want to build multiple versions of LilyPond with different
198 configuration settings, you can use the @code{--enable-config=CONF}
199 option of configure.  You should use @samp{make conf=CONF} to generate
200 the output in @file{out-CONF}.  Example: Suppose I want to build with
201 and without profiling.  Then I'd use the following for the normal
202 build:
203
204 @example 
205         ./configure --prefix=$HOME/usr/ --enable-checking
206         make
207         make install
208 @end example 
209
210 and for the profiling version, I specify a different configuration:
211
212 @example 
213         ./configure --prefix=$HOME/usr/ --enable-profiling --enable-config=prof --disable-checking
214         make conf=prof
215         make conf=prof install
216 @end example 
217
218
219
220 @section Emacs mode
221
222 An Emacs mode for entering music and running LilyPond is contained in
223 the source archive in the @file{elisp} directory.  @command{make
224 install} installs it @var{elispdir}.  The file @file{lilypond-init.el}
225 should be placed to @var{load-path}@file{/site-start.d/} or appended
226 to your @file{~/.emacs} or @file{~/.emacs.el}.
227
228 As a user, you may want add your source path or, e.g., @file{~/site-lisp/} 
229 to your @var{load-path}. Append the following line (modified) to your 
230 @file{~/.emacs}:
231 @c any reason we do not advise:  (push "~/site-lisp" load-path)
232 @quotation
233 @example
234 (setq load-path (append (list (expand-file-name "~/site-lisp")) load-path))
235 @end example
236 @end quotation
237
238
239 @section Vim mode
240
241 A Vim mode for entering music and running LilyPond is contained in the 
242 source archive. For version 6.2 and newer, Vim-mode works directly after 
243 installing LilyPond. 
244
245 For earlier versions (and if @code{$VIM} environment variable does not
246 fall-back to @file{/usr/share/vim}), the LilyPond file type is detected 
247 if your file @file{~/.vim/filetype.vim} has the following content:
248 @example
249         if exists("did_load_filetypes")
250           finish
251         endif
252         augroup filetypedetect
253           au! BufNewFile,BufRead *.ly           setf lilypond
254         augroup END
255 @end example
256 If Vim has been installed to @file{/usr/local/...} instead of 
257 @file{/usr/...}, then @file{/usr/share/vim} may not be specified in 
258 your @code{$VIMRUNTIME} environment variable and you have to include this 
259 path explicitly by appending the following line to your @file{~/.vimrc}:
260 @example
261         set runtimepath+=/usr/share/vim/
262 @end example
263
264 @section Problems
265
266 For help and questions use @email{lilypond-user@@gnu.org}.  Send bug
267 reports to @email{bug-lilypond@@gnu.org}.
268
269 Bugs that are not fault of LilyPond are documented here.
270
271 @subsection Bison 1.875
272
273 There is a bug in bison-1.875: compilation fails with "parse error
274 before `goto'" in line 4922 due to a bug in bison. To fix, either
275 recompile bison 1.875 with the following fix:
276
277 @example
278    $ cd lily; make out/parser.cc
279    $ vi +4919 out/parser.cc
280    # append a semicolon to the line containing "__attribute__ ((__unused__))
281    # save
282    $ make
283 @end example
284
285 @subsection Linking to kpathsea
286
287 If kpathsea and the corresponding header files are installed in some
288 directory where GCC does not search by default, for example in
289 @file{/usr/local/lib/} and @file{/usr/local/include/} respectively,
290 you have to explicitly tell configure where to find it. To do this:
291
292 @itemize
293 @item @code{rm config.cache}
294 @item @code{export LDFLAGS=-L/usr/share/texmf/lib}
295 @item @code{export CPPFLAGS=-I/usr/share/texmf/include}
296 @item @code{./configure}
297 @end itemize
298 Once configure has found them, the paths are stored in
299 @file{config.make} and will be used even if you don't have the
300 environment variables set during make.
301
302
303 @unnumberedsubsec Gcc-3.0.4
304
305 Gcc 3.0.4 is flaky;  upgrade GCC.
306
307 @unnumberedsubsec Flex-2.5.4a and gcc-3.x
308
309 Flex 2.5.4a does not produce g++-3.1.1 compliant C++ code.  To compile
310 LilyPond with gcc-3.1.1 you may do
311
312 @example
313         CONF=gcc-3.1 ./lexer-gcc-3.1.sh
314         CPPFLAGS=-I$(pwd)/lily/out-gcc-3.1 CC=gcc-3.1 CXX=g++-3.1 \
315             ./configure --enable-config=gcc-3.1
316         CONF=gcc-3.1 ./lexer-gcc-3.1.sh
317         make conf=gcc-3.1
318 @end example
319
320
321 @unnumberedsubsec OpenBSD
322
323 @itemize @bullet
324 @item
325  Refer to the section ``Linking to kpathsea'': GCC on OpenBSD doesn't
326 set include paths for kpathsea.
327 @end itemize
328
329 @unnumberedsubsec NetBSD
330
331 @itemize @bullet
332 @item The flex precompiled in NetBSD-1.4.2 is broken.
333 Upgrade to flex-2.5.4a.
334 @end itemize
335
336 @unnumberedsubsec  Solaris
337
338 @itemize @bullet
339 @item Solaris7, ./configure
340
341 @file{./configure} needs a POSIX compliant shell.  On Solaris7,
342 @file{/bin/sh} is not yet POSIX compliant, but @file{/bin/ksh} or bash
343 is.   Run configure like:
344 @example
345         CONFIG_SHELL=/bin/ksh ksh -c ./configure
346 @end example
347 or:
348 @example
349         CONFIG_SHELL=/bin/bash bash -c ./configure
350 @end example
351
352 @end itemize
353
354 @bye
355