lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: OOolilypond and openoffice 2.1


From: Johan Vromans
Subject: Re: OOolilypond and openoffice 2.1
Date: Mon, 05 Mar 2007 09:55:22 +0100
User-agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.4 (gnu/linux)

luis jure <address@hidden> writes:

> lilypond: /usr/lib/openoffice/program/libstdc++.so.6: version
> 'CXXABI_1.3.1' not found (required by lilypond)

The problem is that lilypond is executed in the environment of
OpenOffice.org, that has several special presets to use the OOo
version of shared libraries. In this case, the culpit is
LD_LIBRARY_PATH.

In OOOLilypond's Config, change LilyPond Executable from 

   lilypond

to

   env LD_LIBRARY_PATH= lilypond

(Note the space between = and lilypond!).

Alternatively, you can make a small shell wrapper script and use that
instead of lilypond:

   #!/bin/sh
   LD_LIBRARY_PATH=
   export LD_LIBRARY_PATH
   exec /usr/bin/lilypond ${1+"$@"}

-- Johan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]