Re: Error message using AikenHeads with NullVoice

2022-07-07 Thread Jean Abou Samra




On 7/7/22 18:23, David F. wrote:

On Jul 7, 2022, at 1:59 AM, Valentin Petzel  wrote:

A different way to approach the problem would be to also specify something like

\context {
  \NullVoice
  shapeNoteStyles = ##()
}

It is still questionable why NullVoice would hickup on simply changing the
NoteHead style, so think this is worth creating a bug report.

Cheers,
Valentin

Yes, it does seem odd—and avoidable—that NullVoice would have a problem with 
shape notes.

With aikenHeads, there is one note-head shape (the triangle that is not a 
pyramid) that depends on the stem direction.  My assumption is that’s where the 
error is coming from.


Yup.


But if the note is not being shown at all, that logic doesn’t need to be 
executed.


The definition of NullVoice in ly/engraver-init.ly contains

  %% provide non-printing NoteHeads with proper extents for lyric alignment
  \consists Note_heads_engraver
  \omit NoteHead
  \override NoteHead.X-extent = #(lambda (g)
    (ly:stencil-extent (ly:note-head::print g) X))


Best,
Jean




Re: Error message using AikenHeads with NullVoice

2022-07-07 Thread David F.


> On Jul 7, 2022, at 1:59 AM, Valentin Petzel  wrote:
> 
> A different way to approach the problem would be to also specify something 
> like
> 
> \context {
>  \NullVoice
>  shapeNoteStyles = ##()
> }
> 
> It is still questionable why NullVoice would hickup on simply changing the 
> NoteHead style, so think this is worth creating a bug report.
> 
> Cheers,
> Valentin

Yes, it does seem odd—and avoidable—that NullVoice would have a problem with 
shape notes.

With aikenHeads, there is one note-head shape (the triangle that is not a 
pyramid) that depends on the stem direction.  My assumption is that’s where the 
error is coming from.  But if the note is not being shown at all, that logic 
doesn’t need to be executed.

David F.





Re: Error message using AikenHeads with NullVoice

2022-07-07 Thread David F.



> On Jul 6, 2022, at 12:40 PM, David Wright  wrote:
> 
> On Wed 06 Jul 2022 at 11:56:52 (-0600), David F. wrote:
>> [ … ]
>> The command to use aikenHeads comes from a separate style file that gets 
>> included for each hymn.  But there is an unfortunate interaction between 
>> aikenHeads and NullVoice: Lilypond outputs the following error message:
>> 
>> programming error: must have stem dir for note head
>> continuing, cross fingers
>> 
>> And it outputs a lot of these messages.  I need to find a way to stop 
>> Lilypond from outputting this error.  Any kind of quick fix or hack would be 
>> sufficient.
> 
> $ lilypond source-file.ly |& tee /tmp/complete-errors | grep -v 'programming 
> error: must have stem dir for note head' | grep -v 'continuing, cross fingers'
> 
> Is this hackish enough? The unfiltered errors are available
> for consultation in /tmp/complete-errors. I would need sed
> rather than grep to filter out the second line only when
> preceded by this particular first line.
> 
> Cheers,
> David.

Yes, that would be an option.  I’m already filtering the warning I get from 
setting a custom variable from the command line:

"2>&1 | grep -v '^warning: no such internal option: 
\(aspect-ratio\|style\)$’”

But in this case, I’d be suppressing the error completely.  Which means that, 
in the future, if something I did were to also cause this error, I wouldn’t see 
it.

David F.




Re: Error message using AikenHeads with NullVoice

2022-07-07 Thread Valentin Petzel
A different way to approach the problem would be to also specify something like

\context {
  \NullVoice
  shapeNoteStyles = ##()
}

It is still questionable why NullVoice would hickup on simply changing the 
NoteHead style, so think this is worth creating a bug report.

Cheers,
Valentin

Am Mittwoch, 6. Juli 2022, 23:06:48 CEST schrieb David F.:
> > On Jul 6, 2022, at 1:20 PM, Jean Abou Samra  wrote:
> > 
> > How about changing \Staff into \Voice?
> > 
> > \layout {
> > 
> > \context {
> > 
> > \Voice
> > 
> > \aikenHeads
> > 
> > }
> > 
> > }
> > 
> > That way, it won't affect those NullVoice contexts.
> > 
> > Best,
> > Jean
> 
> Perfect.  That does exactly what I wanted.
> 
> Thanks!
> 
> David F.



signature.asc
Description: This is a digitally signed message part.


Re: Error message using AikenHeads with NullVoice

2022-07-06 Thread David F.


> On Jul 6, 2022, at 1:20 PM, Jean Abou Samra  wrote:
>
> How about changing \Staff into \Voice?
>
> \layout {
> \context {
> \Voice
> \aikenHeads
> }
> }
>
> That way, it won't affect those NullVoice contexts.
>
> Best,
> Jean
>

Perfect.  That does exactly what I wanted.

Thanks!

David F.




Re: Error message using AikenHeads with NullVoice

2022-07-06 Thread Jean Abou Samra




On 7/6/22 19:56, David F. wrote:

I have a collection of SATB hymns that I would like to engrave using shape 
notes.  The Lilypond files are all structured the same, as seen below—treble 
clef with music and a NullVoice for aligning lyrics, then the lyrics, then the 
bass clef.

%
\version "2.22"
\language “english"

% included from another file
\layout {
 \context {
 \Staff
 \aikenHeads
 }
}

\score {
 <<
 \new Staff <<
 % music here
 \new NullVoice = "melody" { e'8 fs'8 }
 >>
 % \new Lyrics \lyricsto "melody" { Ly -- rics }
 % bass clef here
 >>
 \layout {}
}
%

The command to use aikenHeads comes from a separate style file that gets 
included for each hymn.  But there is an unfortunate interaction between 
aikenHeads and NullVoice: Lilypond outputs the following error message:

programming error: must have stem dir for note head
continuing, cross fingers

And it outputs a lot of these messages.  I need to find a way to stop Lilypond 
from outputting this error.  Any kind of quick fix or hack would be sufficient.

One thought I had would be to re-enable regular note heads for the NullVoice:

 \new NullVoice = "melody" \with { \unset shapeNoteStyles } { e'8 
fs'8 }

But I couldn’t come up with anything that worked.

Any help or ideas would be greatly appreciated.



How about changing \Staff into \Voice?

\layout {
    \context {
    \Voice
    \aikenHeads
    }
}

That way, it won't affect those NullVoice contexts.

Best,
Jean




Re: Error message using AikenHeads with NullVoice

2022-07-06 Thread David Wright
On Wed 06 Jul 2022 at 11:56:52 (-0600), David F. wrote:
> [ … ]
> The command to use aikenHeads comes from a separate style file that gets 
> included for each hymn.  But there is an unfortunate interaction between 
> aikenHeads and NullVoice: Lilypond outputs the following error message:
> 
> programming error: must have stem dir for note head
> continuing, cross fingers
> 
> And it outputs a lot of these messages.  I need to find a way to stop 
> Lilypond from outputting this error.  Any kind of quick fix or hack would be 
> sufficient.

$ lilypond source-file.ly |& tee /tmp/complete-errors | grep -v 'programming 
error: must have stem dir for note head' | grep -v 'continuing, cross fingers'

Is this hackish enough? The unfiltered errors are available
for consultation in /tmp/complete-errors. I would need sed
rather than grep to filter out the second line only when
preceded by this particular first line.

Cheers,
David.



Re: Error message

2019-06-25 Thread Craig Dabelstein
Hi Aaron,

The inclusion of *\override Stem.neutral-direction = #'() *comes straight
from the LSR here:

http://lilypond.org/doc/v2.18/Documentation/snippets/pitches#pitches-automatically-changing-the-stem-direction-of-the-middle-note-based-on-the-melody

Here is another MWE to reproduce the problem:


\version "2.19.82"
\language english

\layout {
  \context {
\Staff
\consists "Melody_engraver"
\override Stem.neutral-direction = #'()
  }
}

\relative c'' {
  \time 3/2
  \tuplet 3/2 2 {
r4 df \f af gf' cf, ef gf, e' a,
  } |

  \tuplet 3/2 2 { r4 g' bf, f' e, r df' c, r } |
}


And the error message:

Starting lilypond 2.19.82 [mwe.ly]...

Processing `/Users/craigdabelstein/Desktop/mwe.ly'

Parsing...

Interpreting music...

Preprocessing graphical objects...

Finding the ideal number of pages...

Fitting music on 1 page...

Drawing
systems.../home/gub/NewGub/gub/target/darwin-x86/src/lilypond-git.sv.gnu.org--lilypond.git-stable-2.20/flower/include/drul-array.hh:35
<0>: failed assertion `d == 1 || d == -1'

Exited with exit status 1.

Craig


On Tue, 25 Jun 2019 at 22:56, Aaron Hill  wrote:

> On 2019-06-25 4:46 am, David Kastrup wrote:
> > Craig Dabelstein  writes:
> >
> >> And the guilty line is ...
> >>
> >> \consists "Melody_engraver"
> >> %\override Stem.neutral-direction = #'()
> >>
> >> Commenting out the \override Stem.neutral-direction line fixed the
> >> problem.
> >
> > More likely than not half of a red herring: garbage protection problems
> > are quite elusive to track down.  This propably changes the actions the
> > Melody_engraver takes.
>
> Unless I am completely lost myself, this is not the trampoline problem
> from before, though I suspect the appearance of "Melody_engraver" has
> confused things.
>
> Here is the proper repro MWE:
>
> 
> \version "2.19.82"
> {
>\override Stem.neutral-direction = #'()
>\tuplet 3/2 { r4 b' c'' }
> }
> 
>
> This is bad input because neutral-direction must be strictly UP or DOWN
> (or rather it can be a procedure that ultimately evaluates to 1 or -1).
>  From what I can see, the point of the property is to determine what
> happens to a note on the middle line of a staff when there is nothing
> else (like a beam) that can help sway the decision one way or the other.
>   Setting it to #'() would seem to be meaningless.
>
> Consider the output from the above MWE:
>
> 
> GNU LilyPond 2.19.82
> Processing `drul-array-bad-direction.ly'
> Parsing...
> Interpreting music...
> Preprocessing graphical objects...
> programming error: Stem dir must be up or down.
> continuing, cross fingers
> Finding the ideal number of pages...
> Fitting music on 1 page...
> Drawing systems...lilypond:
> /home/gub/NewGub/gub/target/linux-64/src/lilypond-git.sv.gnu.org--lilypond.git-stable-2.20/flower/include/drul-array.hh:35:
>
> T& Drul_array::at(Direction) [with T = double]: Assertion `d == 1 ||
> d == -1' failed.
> The terminal process terminated with exit code: 134
> 
>
> LilyPond is already emitting a programming error: "Stem dir must be up
> or down".  Whenever I see "cross fingers", I never make any assumption
> of what will work or not.  So a failing assertion afterwards is not
> surprising.
>
> Craig: Would you confirm whether your project output contains the
> programming error line?  I would say there is a bug if you are *only*
> seeing the failing assertion.
>
> Perhaps an additional check could be added to stem.cc:649 to ensure that
> neutral-direction has a sane value, which could catch this particular
> error earlier in the process.
>
>
> -- Aaron Hill
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>


-- 
[image: photograph]
*Craig Dabelstein*
Owner
email: cr...@maximesmusic.com.au
Maxime's Music, QLD, Australia
[image: facebook icon]  [image:
twitter icon]  [image: youtube icon]
 [image: instagram icon]
  maximesmusic.com.au
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-25 Thread Aaron Hill

On 2019-06-25 4:46 am, David Kastrup wrote:

Craig Dabelstein  writes:


And the guilty line is ...

\consists "Melody_engraver"
%\override Stem.neutral-direction = #'()

Commenting out the \override Stem.neutral-direction line fixed the 
problem.


More likely than not half of a red herring: garbage protection problems
are quite elusive to track down.  This propably changes the actions the
Melody_engraver takes.


Unless I am completely lost myself, this is not the trampoline problem 
from before, though I suspect the appearance of "Melody_engraver" has 
confused things.


Here is the proper repro MWE:


\version "2.19.82"
{
  \override Stem.neutral-direction = #'()
  \tuplet 3/2 { r4 b' c'' }
}


This is bad input because neutral-direction must be strictly UP or DOWN 
(or rather it can be a procedure that ultimately evaluates to 1 or -1).  
From what I can see, the point of the property is to determine what 
happens to a note on the middle line of a staff when there is nothing 
else (like a beam) that can help sway the decision one way or the other. 
 Setting it to #'() would seem to be meaningless.


Consider the output from the above MWE:


GNU LilyPond 2.19.82
Processing `drul-array-bad-direction.ly'
Parsing...
Interpreting music...
Preprocessing graphical objects...
programming error: Stem dir must be up or down.
continuing, cross fingers
Finding the ideal number of pages...
Fitting music on 1 page...
Drawing systems...lilypond: 
/home/gub/NewGub/gub/target/linux-64/src/lilypond-git.sv.gnu.org--lilypond.git-stable-2.20/flower/include/drul-array.hh:35: 
T& Drul_array::at(Direction) [with T = double]: Assertion `d == 1 || 
d == -1' failed.

The terminal process terminated with exit code: 134


LilyPond is already emitting a programming error: "Stem dir must be up 
or down".  Whenever I see "cross fingers", I never make any assumption 
of what will work or not.  So a failing assertion afterwards is not 
surprising.


Craig: Would you confirm whether your project output contains the 
programming error line?  I would say there is a bug if you are *only* 
seeing the failing assertion.


Perhaps an additional check could be added to stem.cc:649 to ensure that 
neutral-direction has a sane value, which could catch this particular 
error earlier in the process.



-- Aaron Hill

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-25 Thread David Kastrup
Craig Dabelstein  writes:

> And the guilty line is ...
>
> \consists "Melody_engraver"
> %\override Stem.neutral-direction = #'()
>
> Commenting out the \override Stem.neutral-direction line fixed the problem.

More likely than not half of a red herring: garbage protection problems
are quite elusive to track down.  This propably changes the actions the
Melody_engraver takes.

-- 
David Kastrup

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-25 Thread Craig Dabelstein
And the guilty line is ...

\consists "Melody_engraver"
%\override Stem.neutral-direction = #'()

Commenting out the \override Stem.neutral-direction line fixed the problem.

Thanks everyone for your advice.

All the best,

Craig


On Tue, 25 Jun 2019 at 19:08, Jean ABOU SAMRA  wrote:

>
> > Le 24 juin 2019 à 20:40, Aaron Hill  a écrit :
> >
> >
> > To the list at large: Any folks here with expertise in running LilyPond
> under a debugger on a Mac?  At this point, Craig is likely going to have to
> get us a stack trace since only he is able to reproduce the error without
> sharing the whole project.  Since my knowledge on that platform is
> extremely limited, I cannot shepherd any further.
>
> Well, you can use GDB or LLDB but neither one is as simple as that. GDB
> would be a well-standardized solution as LilyPond is compiled using GCC but
> LLDB is the default on Mac OS so GDB is not so easy to set up. LLDB should
> be usable on GCC-compiled programs, but I think there can sometimes be
> compatibility issues.
>
> Craig, can you share the whole project or not? If not, could you provide
> the most minimal example you have found so that other people using Mac OS
> can investigate further with an example that triggers the issue?
>
> Regards,
> Jean Abou Samra
>
> > -- Aaron Hill
> >
> > ___
> > lilypond-user mailing list
> > lilypond-user@gnu.org
> > https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>

-- 
[image: photograph]
*Craig Dabelstein*
Owner
email: cr...@maximesmusic.com.au
Maxime's Music, QLD, Australia
[image: facebook icon]  [image:
twitter icon]  [image: youtube icon]
 [image: instagram icon]
  maximesmusic.com.au
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-25 Thread Jean ABOU SAMRA

> Le 24 juin 2019 à 20:40, Aaron Hill  a écrit :
> 
> 
> To the list at large: Any folks here with expertise in running LilyPond under 
> a debugger on a Mac?  At this point, Craig is likely going to have to get us 
> a stack trace since only he is able to reproduce the error without sharing 
> the whole project.  Since my knowledge on that platform is extremely limited, 
> I cannot shepherd any further.

Well, you can use GDB or LLDB but neither one is as simple as that. GDB would 
be a well-standardized solution as LilyPond is compiled using GCC but LLDB is 
the default on Mac OS so GDB is not so easy to set up. LLDB should be usable on 
GCC-compiled programs, but I think there can sometimes be compatibility issues.

Craig, can you share the whole project or not? If not, could you provide the 
most minimal example you have found so that other people using Mac OS can 
investigate further with an example that triggers the issue?

Regards,
Jean Abou Samra

> -- Aaron Hill
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-24 Thread Aaron Hill

On 2019-06-24 3:18 am, Craig Dabelstein wrote:

Hi Aaron,

Omitting the tuplet bracket doesn't help. I'm really at a loss at what 
to

do now.


Since your isolated measures involved tuplets, I had wondered if perhaps 
the issue came from the brackets.  Maybe try \omit TupletNumber, both 
with and without \omit TupletBracket.  If the issue is with the 
engraver, you may want to instead try adding this to your project:



\layout { \context { \Voice \remove "Tuplet_engraver" } }


However, I am probably completely off base on where the fault lies.  You 
could try working through the other engravers one at a time similar to 
[1].  The hope is that you might be able to better narrow down the 
project into a MWE that does reproduce the error by getting rid of 
elements that have no effect.


[1]: http://lsr.di.unimi.it/LSR/Item?id=280

While getting a repro is important, we should also be looking at ways to 
unblock your work.  I would suggest dividing your project in sections, 
so that you can compile them independently without triggering the error. 
 It does mean needing to manually stitch together multiple outputs into 
a single file, but at least you could continue to work on your score 
while the underlying bug is being investigated.




To the list at large: Any folks here with expertise in running LilyPond 
under a debugger on a Mac?  At this point, Craig is likely going to have 
to get us a stack trace since only he is able to reproduce the error 
without sharing the whole project.  Since my knowledge on that platform 
is extremely limited, I cannot shepherd any further.



-- Aaron Hill

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-24 Thread Craig Dabelstein
Hi Aaron,

Omitting the tuplet bracket doesn't help. I'm really at a loss at what to
do now.

Craig


On Mon, 24 Jun 2019 at 16:57, Aaron Hill  wrote:

> On 2019-06-23 11:15 pm, Craig Dabelstein wrote:
> > Thanks for the help everyone.
> >
> > I narrowed down the guilty bars. Here's a MWE, however, it doesn't
> > reproduce the error in this MWE. When these two bars are replaced with
> > s1.*2 the files produce no error. I really don't know where to go from
> > here. Any advice?
>
> Well, just because you can comment out some music and have things work
> does not mean the commented out music is "guilty" per se.  Context often
> matters, so it is wise to only point fingers when you can isolate a
> section of music and have it reproduce an error standing alone.
>
> In your case, you have found two bars that work just fine by themselves.
>   If there is any error with your input, it is certainly not there.  You
> will need to slowly add in the outer context until the problem appears.
>
> Out of curiosity, if you \omit TupletBracket in your project, does the
> failing assertion reproduce?
>
>
> -- Aaron Hill
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>


-- 
[image: photograph]
*Craig Dabelstein*
Owner
email: cr...@maximesmusic.com.au
Maxime's Music, QLD, Australia
[image: facebook icon]  [image:
twitter icon]  [image: youtube icon]
 [image: instagram icon]
  maximesmusic.com.au
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-23 Thread Aaron Hill

On 2019-06-23 11:15 pm, Craig Dabelstein wrote:

Thanks for the help everyone.

I narrowed down the guilty bars. Here's a MWE, however, it doesn't
reproduce the error in this MWE. When these two bars are replaced with
s1.*2 the files produce no error. I really don't know where to go from
here. Any advice?


Well, just because you can comment out some music and have things work 
does not mean the commented out music is "guilty" per se.  Context often 
matters, so it is wise to only point fingers when you can isolate a 
section of music and have it reproduce an error standing alone.


In your case, you have found two bars that work just fine by themselves. 
 If there is any error with your input, it is certainly not there.  You 
will need to slowly add in the outer context until the problem appears.


Out of curiosity, if you \omit TupletBracket in your project, does the 
failing assertion reproduce?



-- Aaron Hill

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-23 Thread Craig Dabelstein
Thanks for the help everyone.

I narrowed down the guilty bars. Here's a MWE, however, it doesn't
reproduce the error in this MWE. When these two bars are replaced with
s1.*2 the files produce no error. I really don't know where to go from
here. Any advice?

Craig


\version "2.19.82"
\language english

\relative c'' {
  \time 3/2
  \tuplet 3/2 2 {
r4 df -. \f af -. gf' -. cf, -. ef -. gf, -. e' -. a, -.
  } |

  \tuplet 3/2 2 { r4 g' -. bf, -. f' -. e, -. r df' -. c, -. r } |
}



On Sun, 23 Jun 2019 at 20:36, DJF  wrote:

> > On Jun 23, 2019, at 1:38 AM, Craig Dabelstein <
> craig.dabelst...@gmail.com> wrote:
> >
> > Hi Lilyponders,
> >
> > Can anyone tell me what this error message means when trying to compile
> a file?
> >
> > Drawing
> systems.../home/gub/NewGub/gub/target/darwin-x86/src/lilypond-git.sv.gnu.org--lilypond.git-stable-2.20/flower/include/drul-array.hh:35:
> failed assertion `d == 1 || d == -1'
> > Exited with exit status 1.
>
> This is my least favorite kind of error! Whenever I have these, it often
> concerns beaming, especially when LP is trying to beam more than two notes
> but, because of a misplaced octave or perhaps a clef change, it can't draw
> a satisfactory beam. Sometimes, just turning off beaming in 4s can allow
> the file to compile so that you can start investigating.
>
> http://lilypond.org/doc/v2.19/Documentation/notation/beams.en.html
>
> If that doesn't work, and if the file has been compiling fine right along,
> I'll assume the issue has to do with the part most recently entered. I'll
> stick a %} at the end of the part and then pick a reasonable point to put a
> %{ and, with that section now "turned off", I'll see if the piece can
> compile. If not, I keep moving the %{ earlier and earlier until it does.
>
> Hope this helps,
>
> Dan



-- 
[image: photograph]
*Craig Dabelstein*
Owner
email: cr...@maximesmusic.com.au
Maxime's Music, QLD, Australia
[image: facebook icon]  [image:
twitter icon]  [image: youtube icon]
 [image: instagram icon]
  maximesmusic.com.au
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-23 Thread DJF
> On Jun 23, 2019, at 1:38 AM, Craig Dabelstein  
> wrote:
> 
> Hi Lilyponders,
> 
> Can anyone tell me what this error message means when trying to compile a 
> file?
> 
> Drawing 
> systems.../home/gub/NewGub/gub/target/darwin-x86/src/lilypond-git.sv.gnu.org--lilypond.git-stable-2.20/flower/include/drul-array.hh:35:
>  failed assertion `d == 1 || d == -1'
> Exited with exit status 1.

This is my least favorite kind of error! Whenever I have these, it often 
concerns beaming, especially when LP is trying to beam more than two notes but, 
because of a misplaced octave or perhaps a clef change, it can't draw a 
satisfactory beam. Sometimes, just turning off beaming in 4s can allow the file 
to compile so that you can start investigating. 

http://lilypond.org/doc/v2.19/Documentation/notation/beams.en.html

If that doesn't work, and if the file has been compiling fine right along, I'll 
assume the issue has to do with the part most recently entered. I'll stick a %} 
at the end of the part and then pick a reasonable point to put a %{ and, with 
that section now "turned off", I'll see if the piece can compile. If not, I 
keep moving the %{ earlier and earlier until it does.

Hope this helps,

Dan
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-23 Thread Urs Liska


Am 23. Juni 2019 11:47:17 MESZ schrieb ah :
>
>
>On 23/06/2019 08:38, Craig Dabelstein wrote:
>> Hi Lilyponders,
>> 
>> Can anyone tell me what this error message means when trying to
>compile a
>> file?
>> 
>> Drawing systems...
>>
>/home/gub/NewGub/gub/target/darwin-x86/src/lilypond-git.sv.gnu.org--lilypond.git-stable-2.20/flower/include/drul-array.hh:35
>> <0>: failed assertion `d == 1 || d == -1'
>> 
>> Exited with exit status 1.
>> 
>> 
>> All the best,
>> 
>> 
>> Craig
>> 
>> 
>
>Can it be that the file you try to compile contains an error?
>
>I am just starting and I am not acquainted with Lilypond at all but I 
>had a look at the source code. The "d" the failed assertion refers to
>is 
>of type "Direction" and must be 1 or -1. No other values are allowed 
>when calling the "at()" method.

Still, erroneous input should be caught by the parser rather than throwing that 
kind of exception. So here the question is what kind of input (condition) is 
able to provoke that problem.

Urs

>
>bw
>bliako
>
>___
>lilypond-user mailing list
>lilypond-user@gnu.org
>https://lists.gnu.org/mailman/listinfo/lilypond-user

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-23 Thread ah



On 23/06/2019 08:38, Craig Dabelstein wrote:

Hi Lilyponders,

Can anyone tell me what this error message means when trying to compile a
file?

Drawing systems...
/home/gub/NewGub/gub/target/darwin-x86/src/lilypond-git.sv.gnu.org--lilypond.git-stable-2.20/flower/include/drul-array.hh:35
<0>: failed assertion `d == 1 || d == -1'

Exited with exit status 1.


All the best,


Craig




Can it be that the file you try to compile contains an error?

I am just starting and I am not acquainted with Lilypond at all but I 
had a look at the source code. The "d" the failed assertion refers to is 
of type "Direction" and must be 1 or -1. No other values are allowed 
when calling the "at()" method.


bw
bliako

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2019-06-23 Thread Aaron Hill

On 2019-06-22 10:38 pm, Craig Dabelstein wrote:
Can anyone tell me what this error message means when trying to compile 
a

file?

Drawing systems...
/home/gub/NewGub/gub/target/darwin-x86/src/lilypond-git.sv.gnu.org--lilypond.git-stable-2.20/flower/include/drul-array.hh:35
<0>: failed assertion `d == 1 || d == -1'


It means that some code has attempted to access a Drul_array with an 
invalid direction.  Now seeing as Drul_arrays are so ubiquitous in the 
code base, it is impossible to determine which one is throwing the error 
without a more complete stack trace.


Do you have a MWE for this error?  Failing that, can you run LilyPond 
under gdb and share more details?



-- Aaron Hill

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-26 Thread Michael Gerdau
Am 26.06.2017 um 21:47 schrieb Thomas Morley:
> 2017-06-26 15:47 GMT+02:00 Phil Holmes :
>> - Original Message - From: "Michael Gerdau" 
>> To: "Thomas Morley" ; "Maxime's Music"
>> 
>> Cc: "Phil Holmes" ; "lilypond-user"
>> 
>> Sent: Monday, June 26, 2017 11:07 AM
>> Subject: Re: Error message
>>
>>
>>>>> Thanks for all your efforts with this. I'm out of internet range till
>>>>> Wednesday. Just trying to survive on my phone.
>>>>>
>>>>> Harm, if you'd like to forward those files, that's fine.
>>>>>
>>>>> Craig
>>>>
>>>>
>>>> Done.
>>>
>>>
>>> Just for the record:
>>>
>>> On my about 6 year old 16GB ArchLinux Laptop  (CPU i7-2820QM @ 2.3GHz)
>>> it took under 4 minutes to compile Harm's modified Version. VMEM maxed
>>> at about 4.5 GB according to top (could do a more thourough analysis if
>>> that would be of interest).
>>>
>>> Doing the same with Craig's unmodified files gives a couple of errors
>>> regarding missing stuff (as Harm already mentioned) and is done after
>>> about 4:40 with VMEM maxed at 6 GB according to top.
>>>
>>> Kind regards,
>>> Michael
>>> --
>>> Michael Gerdau   email: m...@qata.de
>>> GPG-keys available on request or at public keyserver
>>
>>
>> Further data point.  On Windows vista 64-bit with 6 Gigs memory, I get a
>> malloc error on both scores, at just under 1.5 Gigs allocated memory (with
>> plenty free) and around 300 seconds processor time.
>>
>> --
>> Phil Holmes
> 
> Hi all,
> 
> in \paper from lilypond-files-harm/lilypond-files/scoreA-init.ily
> I had changed #ly:optimal-breaking to #ly:one-line-breaking
> and forgot to undo it before sending the zip around.
> 
> I'm afraid compilation needs to be retested if you didn't change it
> back yourself. At least for my modified files.

Undoing that change increases compiletime and VMEM on my machine
somewhat to about 4:10 and 5.5 GB according to top.

Kind regards,
Michael
-- 
 Michael Gerdau   email: m...@qata.de
 GPG-keys available on request or at public keyserver

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-26 Thread Thomas Morley
2017-06-26 15:47 GMT+02:00 Phil Holmes :
> - Original Message - From: "Michael Gerdau" 
> To: "Thomas Morley" ; "Maxime's Music"
> 
> Cc: "Phil Holmes" ; "lilypond-user"
> 
> Sent: Monday, June 26, 2017 11:07 AM
> Subject: Re: Error message
>
>
>>>> Thanks for all your efforts with this. I'm out of internet range till
>>>> Wednesday. Just trying to survive on my phone.
>>>>
>>>> Harm, if you'd like to forward those files, that's fine.
>>>>
>>>> Craig
>>>
>>>
>>> Done.
>>
>>
>> Just for the record:
>>
>> On my about 6 year old 16GB ArchLinux Laptop  (CPU i7-2820QM @ 2.3GHz)
>> it took under 4 minutes to compile Harm's modified Version. VMEM maxed
>> at about 4.5 GB according to top (could do a more thourough analysis if
>> that would be of interest).
>>
>> Doing the same with Craig's unmodified files gives a couple of errors
>> regarding missing stuff (as Harm already mentioned) and is done after
>> about 4:40 with VMEM maxed at 6 GB according to top.
>>
>> Kind regards,
>> Michael
>> --
>> Michael Gerdau   email: m...@qata.de
>> GPG-keys available on request or at public keyserver
>
>
> Further data point.  On Windows vista 64-bit with 6 Gigs memory, I get a
> malloc error on both scores, at just under 1.5 Gigs allocated memory (with
> plenty free) and around 300 seconds processor time.
>
> --
> Phil Holmes

Hi all,

in \paper from lilypond-files-harm/lilypond-files/scoreA-init.ily
I had changed #ly:optimal-breaking to #ly:one-line-breaking
and forgot to undo it before sending the zip around.

I'm afraid compilation needs to be retested if you didn't change it
back yourself. At least for my modified files.

Sorry for that,
  Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-26 Thread Andrew Bernard
Hi Phil,

With the corrected score that produces no warnings I get a fine compile on
Windows 10 with about 3 GiB maximum memory usage. Lilypond 2.19.61. The
score with warnings crashes and does not produce any output.

Andrew
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-26 Thread Phil Holmes
- Original Message - 
From: "Michael Gerdau" 
To: "Thomas Morley" ; "Maxime's Music" 

Cc: "Phil Holmes" ; "lilypond-user" 


Sent: Monday, June 26, 2017 11:07 AM
Subject: Re: Error message



Thanks for all your efforts with this. I'm out of internet range till
Wednesday. Just trying to survive on my phone.

Harm, if you'd like to forward those files, that's fine.

Craig


Done.


Just for the record:

On my about 6 year old 16GB ArchLinux Laptop  (CPU i7-2820QM @ 2.3GHz)
it took under 4 minutes to compile Harm's modified Version. VMEM maxed
at about 4.5 GB according to top (could do a more thourough analysis if
that would be of interest).

Doing the same with Craig's unmodified files gives a couple of errors
regarding missing stuff (as Harm already mentioned) and is done after
about 4:40 with VMEM maxed at 6 GB according to top.

Kind regards,
Michael
--
Michael Gerdau   email: m...@qata.de
GPG-keys available on request or at public keyserver


Further data point.  On Windows vista 64-bit with 6 Gigs memory, I get a 
malloc error on both scores, at just under 1.5 Gigs allocated memory (with 
plenty free) and around 300 seconds processor time.


--
Phil Holmes 



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-26 Thread Michael Gerdau
>> Thanks for all your efforts with this. I'm out of internet range till
>> Wednesday. Just trying to survive on my phone.
>>
>> Harm, if you'd like to forward those files, that's fine.
>>
>> Craig
> 
> Done.

Just for the record:

On my about 6 year old 16GB ArchLinux Laptop  (CPU i7-2820QM @ 2.3GHz)
it took under 4 minutes to compile Harm's modified Version. VMEM maxed
at about 4.5 GB according to top (could do a more thourough analysis if
that would be of interest).

Doing the same with Craig's unmodified files gives a couple of errors
regarding missing stuff (as Harm already mentioned) and is done after
about 4:40 with VMEM maxed at 6 GB according to top.

Kind regards,
Michael
-- 
 Michael Gerdau   email: m...@qata.de
 GPG-keys available on request or at public keyserver

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


RE: Error message

2017-06-25 Thread Andrew Bernard
Hi All,

I have been working closely with Craig to study the matter. Interestingly,
in this large incomplete score as received, it consumed an ever expanding
amount of memory until it crashed with no output. I observed a set of
warnings regarding missing parts. In my experience one ignores lilypond
warnings, even though not errors, at one's peril. I asked Craig to address
the errors, and then it compiled fine, although still consuming a lot of
memory. That in itself is interesting.

I ran on Linux Mint 18.1, Windows 10, and Mac OS X 10.12.5. All work fine
now. The remaining issue is that as Craig needs to add yet more parts to
this large wind orchestra work that it will max out memory again and fail.
We have yet to see.

Memory use for the lilypond process reaches about 4.9 GiB on linux, and
about 2.9-3 GiB on Windows and OS X.

Looking at the source code, it is clear that Craig is a master user of
lilypond, and I could not find anything obviously funky or misguided or
peculiar in the code that may cause memory blowouts.

My conclusion is that lilypond at this point in time does not handle large
scores in a constrained manner re memory, and as the score gets larger and
longer and longer, so lilypond's memory use just increases in linear
proportion. There must not be any pipelining and parallelism going on.
Indeed, I believe a very closely related thread regarding graphics
pipelining is current in the development list. I can say from this study
here that improvements in this area would welcome, nay, necessary for
ambitiously large projects. If this score reached 200 hundred pages, I doubt
it would compile on 32 bit systems, based in my measurements. And as
mentioned, we fear that adding the remaining parts will require more memory
than is available on 32 bit machines.

Regarding memory usage, I posed a question on the devel list which has so
far been overlooked. Why is the Mac OSX version of lilypond 32 bit, when
Macs have been6 4 bit for a long time? The same question can be asked for
Windows. Why is lilypond on Windows also only 32 bit? Is there some
technical limitation forcing this? Or is it just that the average use does
not make vast scores?

I will mention that it is interesting that on Windows the ram does sit just
under the 3 GiB limit imposed on processes by Microsoft, so perhaps lilypond
is behaving nicely and the linear increase in memory use with size is not
actually correct, and lilypond is managing memory, up to the 32 bit system
limit on Windows, and that it was unaddressed warnings blowing memory out
for some reason.

Andrew




___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-25 Thread Thomas Morley
2017-06-26 0:33 GMT+02:00 Maxime's Music :
> Hi all,
>
> Thanks for all your efforts with this. I'm out of internet range till
> Wednesday. Just trying to survive on my phone.
>
> Harm, if you'd like to forward those files, that's fine.
>
> Craig

Done.

Best,
  Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-25 Thread Maxime's Music
Hi all,

Thanks for all your efforts with this. I'm out of internet range till
Wednesday. Just trying to survive on my phone.

Harm, if you'd like to forward those files, that's fine.

Craig
On Mon, 26 Jun 2017 at 8:20 am, Thomas Morley 
wrote:

> 2017-06-26 0:00 GMT+02:00 Michael Gerdau :
> >> I'd be happy to test.  I've an 8 Gig Ubuntu machine (my Gub builder) an
> >> 8 Gig Windows 10 and my day-to-day 6 Gig Vista.  I could test with any
> >> of those.  Would require the score privately.
> >
> > If it is still of interest, I could run on either my 16GB ArchLinux
> > Laptop or my 64GB ArchLinux DB Server.
> >
> > Like Phil I would need the score privately.
> >
> > Kind regards,
> > Michael
>
>
> Hi Phil, Michael,
>
> if of interest, I could send you the .zip with the files Craig sent to
> me and an additional folder where I've put in my changes. The
> saxaphon-music would be still missing, though.
>
> In any case I will wait for Craig's ok, before doing so.
>
>
> Cheers,
>   Harm
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-25 Thread Thomas Morley
2017-06-26 0:00 GMT+02:00 Michael Gerdau :
>> I'd be happy to test.  I've an 8 Gig Ubuntu machine (my Gub builder) an
>> 8 Gig Windows 10 and my day-to-day 6 Gig Vista.  I could test with any
>> of those.  Would require the score privately.
>
> If it is still of interest, I could run on either my 16GB ArchLinux
> Laptop or my 64GB ArchLinux DB Server.
>
> Like Phil I would need the score privately.
>
> Kind regards,
> Michael


Hi Phil, Michael,

if of interest, I could send you the .zip with the files Craig sent to
me and an additional folder where I've put in my changes. The
saxaphon-music would be still missing, though.

In any case I will wait for Craig's ok, before doing so.


Cheers,
  Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-25 Thread Michael Gerdau
> I'd be happy to test.  I've an 8 Gig Ubuntu machine (my Gub builder) an
> 8 Gig Windows 10 and my day-to-day 6 Gig Vista.  I could test with any
> of those.  Would require the score privately.

If it is still of interest, I could run on either my 16GB ArchLinux
Laptop or my 64GB ArchLinux DB Server.

Like Phil I would need the score privately.

Kind regards,
Michael
-- 
 Michael Gerdau   email: m...@qata.de
 GPG-keys available on request or at public keyserver

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-25 Thread Phil Holmes
I'd be happy to test.  I've an 8 Gig Ubuntu machine (my Gub builder) an 8 
Gig Windows 10 and my day-to-day 6 Gig Vista.  I could test with any of 
those.  Would require the score privately.


--
Phil Holmes


- Original Message - 
From: "Thomas Morley" 

To: "Maxime's Music" 
Cc: "lilypond-user" 
Sent: Sunday, June 25, 2017 11:34 AM
Subject: Re: Error message



2017-06-23 11:09 GMT+02:00 Maxime's Music :

Thanks for taking a look at this for me.


Hi Craig,

as long as I don't need to post larger amounts of your code I'll answer 
onlist.

Hope this is ok with you.

That said, I was not able to compile your code in a reasonable amount of 
time.

I always aborted after ~2h compile-time.

Even while using
ly:one-line-breaking
to skip page-breaking I was not successfull, although you forgot to
include the saxaphon-music in the zip-file, so that I excluded it from
\score.
How long did a successful run last for you?

I'm on an admittedly weak laptop, only 4GB RAM. Using Ubuntu 16.04
64-bit with mutiple lily-versions.

Only thing I stumbled across is your use of scaling durations for
every tuplet like:
   \times 2/3  {
 r8*1023/1024 d'8*513/512 ( [ c8*1023/1024 ) ]
   }
This does not make any sense to me. Why do you do so?

Anyway, even after deleting all scaling of this kind I didn't get a
successful run in a reasonable amount of time.

As far as I can tell nothing else in your code should be that
expensive to eat up memory or to let explode compile-time.

Would be great if someone else with a stronger computer could retest.
For example, I didn't try to exclude Melody_engraver.
During the 2h compile-time my computer is not usable for other stuff.
And I need to restart afterwards.
So I give up on this.


Sorry to be of not more help,
 Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user




___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-25 Thread Thomas Morley
2017-06-23 11:09 GMT+02:00 Maxime's Music :
> Thanks for taking a look at this for me.

Hi Craig,

as long as I don't need to post larger amounts of your code I'll answer onlist.
Hope this is ok with you.

That said, I was not able to compile your code in a reasonable amount of time.
I always aborted after ~2h compile-time.

Even while using
ly:one-line-breaking
to skip page-breaking I was not successfull, although you forgot to
include the saxaphon-music in the zip-file, so that I excluded it from
\score.
How long did a successful run last for you?

I'm on an admittedly weak laptop, only 4GB RAM. Using Ubuntu 16.04
64-bit with mutiple lily-versions.

Only thing I stumbled across is your use of scaling durations for
every tuplet like:
\times 2/3  {
  r8*1023/1024 d'8*513/512 ( [ c8*1023/1024 ) ]
}
This does not make any sense to me. Why do you do so?

Anyway, even after deleting all scaling of this kind I didn't get a
successful run in a reasonable amount of time.

As far as I can tell nothing else in your code should be that
expensive to eat up memory or to let explode compile-time.

Would be great if someone else with a stronger computer could retest.
For example, I didn't try to exclude Melody_engraver.
During the 2h compile-time my computer is not usable for other stuff.
And I need to restart afterwards.
So I give up on this.


Sorry to be of not more help,
  Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-22 Thread Maxime's Music
Thanks Harm, I'll package it up for you today.
On Fri, 23 Jun 2017 at 5:24 am, Thomas Morley 
wrote:

> 2017-06-22 6:27 GMT+02:00 Maxime's Music :
> > Hi Lilyponders,
> >
> > I've been working on a very big score, adding staves one at a time.
> > There are 34 staves, and the PDF is 107 pages long. When I add in either
> of
> > the final two staves I get this error message:
> >
> >
> > lilypond(43147,0xa70c91c0) malloc: *** mach_vm_map(size=1048576) failed
> > (error code=3)
> >
> > *** error: can't allocate region
> >
> > *** set a breakpoint in malloc_error_break to debug
> >
> >
> > Can anyone point me in the right direction to start working out what is
> > wrong?
> >
> >
> > All the best,
> >
> >
> > Craig
>
>
>
> Hi Craig,
>
> I'd offer to have a look at your score, if you send it to me privately.
>
> Cheers,
>   Harm
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-22 Thread Thomas Morley
2017-06-22 6:27 GMT+02:00 Maxime's Music :
> Hi Lilyponders,
>
> I've been working on a very big score, adding staves one at a time.
> There are 34 staves, and the PDF is 107 pages long. When I add in either of
> the final two staves I get this error message:
>
>
> lilypond(43147,0xa70c91c0) malloc: *** mach_vm_map(size=1048576) failed
> (error code=3)
>
> *** error: can't allocate region
>
> *** set a breakpoint in malloc_error_break to debug
>
>
> Can anyone point me in the right direction to start working out what is
> wrong?
>
>
> All the best,
>
>
> Craig



Hi Craig,

I'd offer to have a look at your score, if you send it to me privately.

Cheers,
  Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-22 Thread David Kastrup
"Maxime's Music"  writes:

> Hi,
>
> I'm on a Mac Sierra 10.12.5, Lilypond 2.19.36
> It has 8GB of RAM but when engraving my score Lilypond is using almost 3GB.
> When it gets close to the 3GB point is when it crashes and I get the malloc
> error. Could it be simply that I don't have enough RAM?

More like LilyPond does not have enough RAM.  I think it is a 32bit
executable.  In that case I don't think it will get much more than 3GB
regardless of what you may have installed.  LilyPond's representation of
printed output items is sort-of wasteful but I am still surprised that
someone manages to hit the 3GB mark.

-- 
David Kastrup

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-22 Thread Maxime's Music
Hi,

I'm on a Mac Sierra 10.12.5, Lilypond 2.19.36
It has 8GB of RAM but when engraving my score Lilypond is using almost 3GB.
When it gets close to the 3GB point is when it crashes and I get the malloc
error. Could it be simply that I don't have enough RAM?

Craig

On Thu, 22 Jun 2017 at 7:14 pm, Andrew Bernard 
wrote:

> Hi Craig,
>
> Version number and platform?
>
> I have very large, very complex scores of similar length (100 pages +)
> that compile with no problem (but keyboard music so perhaps considerably
> fewer staves).
>
> Andrew
>
>
> On 22 June 2017 at 14:27, Maxime's Music 
> wrote:
>
>> Hi Lilyponders,
>>
>> I've been working on a very big score, adding staves one at a time.
>> There are 34 staves, and the PDF is 107 pages long. When I add in either
>> of the final two staves I get this error message:
>>
>>
>> lilypond(43147,0xa70c91c0) malloc: *** mach_vm_map(size=1048576) failed
>> (error code=3)
>>
>> *** error: can't allocate region
>>
>> *** set a breakpoint in malloc_error_break to debug
>>
>>
>> Can anyone point me in the right direction to start working out what is
>> wrong?
>>
>>
>> All the best,
>>
>>
>> Craig
>>
>>
>>
>> ___
>> lilypond-user mailing list
>> lilypond-user@gnu.org
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>>
>>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-22 Thread Andrew Bernard
Hi Craig,

Version number and platform?

I have very large, very complex scores of similar length (100 pages +) that
compile with no problem (but keyboard music so perhaps considerably fewer
staves).

Andrew


On 22 June 2017 at 14:27, Maxime's Music  wrote:

> Hi Lilyponders,
>
> I've been working on a very big score, adding staves one at a time.
> There are 34 staves, and the PDF is 107 pages long. When I add in either
> of the final two staves I get this error message:
>
>
> lilypond(43147,0xa70c91c0) malloc: *** mach_vm_map(size=1048576) failed
> (error code=3)
>
> *** error: can't allocate region
>
> *** set a breakpoint in malloc_error_break to debug
>
>
> Can anyone point me in the right direction to start working out what is
> wrong?
>
>
> All the best,
>
>
> Craig
>
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2017-06-21 Thread David Kastrup
"Maxime's Music"  writes:

> Hi Lilyponders,
>
> I've been working on a very big score, adding staves one at a time.
> There are 34 staves, and the PDF is 107 pages long. When I add in either of
> the final two staves I get this error message:
>
>
> lilypond(43147,0xa70c91c0) malloc: *** mach_vm_map(size=1048576) failed
> (error code=3)
>
> *** error: can't allocate region
>
> *** set a breakpoint in malloc_error_break to debug
>
>
> Can anyone point me in the right direction to start working out what is
> wrong?

Sounds like you are running out of memory.  Are there (artificial)
limits set for the amount of memory an application may use?

-- 
David Kastrup

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


RE: error message

2015-10-10 Thread Mark Stephen Mrotek
Federico,

Thank you for your reply.
The installation of Lilypond is not new. 
The error message appears sporadically. It may appear three times in a row 
during a session and then the file compiles. This cycle repeats throughout the 
session.

Mark

-Original Message-
From: Federico Bruni [mailto:f...@inventati.org] 
Sent: Saturday, October 10, 2015 12:45 AM
To: Mark Stephen Mrotek 
Cc: lilypond-user@gnu.org
Subject: Re: error message

Il giorno sab 10 ott 2015 alle 1:20, Mark Stephen Mrotek  
ha scritto:
> Using Lilypond2.18.0, Frescobaldi 2.18.1.
> 
> When clicking the Lilypond icon in Frescobaldi the following appears:
> 
> 
> 
> Starting lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...Aborting 
> lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...
> 
> Exited with return code 62097.
> 
Does it happen with a new lilypond installation?

Few days ago I had the same problem, I think, while trying last lilypond on 
windows. It happened only the first time I run lilypond and it took a lot to 
compile a simple file. After the first compilation finally succeeded it didn't 
happen anymore.




___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2015-10-10 Thread Knute Snortum
No error on a Windows 10 system with 2.18.2.


Knute Snortum
(via Gmail)

On Sat, Oct 10, 2015 at 1:05 AM, Michael Gerdau  wrote:

> > > Starting lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...Aborting
> > > lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...
> > >
> > > Exited with return code 62097.
> >
> > Does it happen with a new lilypond installation?
>
> It does not happen on my system using lilypond-windows.exe 2.19.25
>
> Kind regards,
> Michael
> --
>  Michael Gerdau   email: m...@qata.de
>  GPG-keys available on request or at public keyserver
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2015-10-10 Thread Michael Gerdau
> > Starting lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...Aborting
> > lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...
> > 
> > Exited with return code 62097.
> 
> Does it happen with a new lilypond installation?

It does not happen on my system using lilypond-windows.exe 2.19.25

Kind regards,
Michael
-- 
 Michael Gerdau   email: m...@qata.de
 GPG-keys available on request or at public keyserver

signature.asc
Description: This is a digitally signed message part.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2015-10-10 Thread Federico Bruni
Il giorno sab 10 ott 2015 alle 1:20, Mark Stephen Mrotek 
 ha scritto:

Using Lilypond2.18.0, Frescobaldi 2.18.1.

When clicking the Lilypond icon in Frescobaldi the following appears:



Starting lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...Aborting 
lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...


Exited with return code 62097.


Does it happen with a new lilypond installation?

Few days ago I had the same problem, I think, while trying last 
lilypond on windows. It happened only the first time I run lilypond and 
it took a lot to compile a simple file. After the first compilation 
finally succeeded it didn't happen anymore.





___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2015-10-09 Thread Colin Campbell

On 15-10-09 05:20 PM, Mark Stephen Mrotek wrote:


Hello,

Using Lilypond2.18.0, Frescobaldi 2.18.1.

When clicking the Lilypond icon in Frescobaldi the following appears:

Starting lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...Aborting 
lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...


Exited with return code 62097.

Please provide advice.

Thank you for your kind attention.




The test code runs without error under 2.19.29 and Linux. The problem 
may be platform-specific, it seems.


Cheers,
Colin
--
There have been times I've considered getting the arbalest mounted on 
the right front fender of my car in working order.

 - denaldo, in alt.callahans
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


RE: error message

2015-10-09 Thread Mark Stephen Mrotek
Abraham,

 

Thank you for your response. The file is attached.

 

Mark

 

From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org
[mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of
tisimst
Sent: Friday, October 09, 2015 4:45 PM
To: lilypond-user@gnu.org
Subject: Re: error message

 

Mind sharing the source (file) that is being used when you get this error?

 

Thanks,

Abraham

On Friday, October 9, 2015, Mark Stephen Mrotek [via Lilypond] <[hidden
email]> wrote:

Hello,

 

Using Lilypond2.18.0, Frescobaldi 2.18.1.

When clicking the Lilypond icon in Frescobaldi the following appears:

 

Starting lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...Aborting
lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...

Exited with return code 62097.

 

Please provide advice.

Thank you for your kind attention.

 

Mark Stephen Mrotek


___ 
lilypond-user mailing list 
[hidden email] <http://user/SendEmail.jtp?type=node&node=182215&i=0>  
https://lists.gnu.org/mailman/listinfo/lilypond-user



  _  

If you reply to this email, your message will be added to the discussion
below:

http://lilypond.1069038.n5.nabble.com/error-message-tp182215.html 

To start a new topic under User, email ml-node+s1069038n3h2@... 
To unsubscribe from Lilypond, click here.
 
<http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_
viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.Bas
icNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.templat
e.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant
_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml> NAML


 

  _____  

View this message in context: Re: error message
<http://lilypond.1069038.n5.nabble.com/error-message-tp182215p182216.html> 
Sent from the User mailing list archive
<http://lilypond.1069038.n5.nabble.com/User-f3.html>  at Nabble.com.

\version "2.18.0"

\header {
  title = "Nocturne 5"
  composer = "J. Leybach"
  opus = "Op. 52 No. 5"
}

\score {
  \new PianoStaff <<
\new Staff = "upper"
\relative c'' {
  \clef treble
  \key aes \major
  \time 6/8
  
  r4 8\p-. q-. -. -. |
  \tieDown
  4. (4-.) r8 |
  r4 8-.\p -. -. -. |
  4. (< ees g>4-.) r8 |
  
  %5
  
  r4 8\p q   |

 |
  4. (4-.) r8 |
  4. (4-.) r8 |
  4. (4-.) r8 |
  ees\f^^^.-2 ees'^^^.-2 ees'^^^.-2
  \ottava 1
  f'16 ees des bes g ees-4 |
  \ottava 0
  des bes g ees-4 des bes
  g_\markup {\italic "diminuendoe ritardando"}
  ees-2 d ees f ees |
  d ees f ees d ees f-1 g aes a-1 bes-2 b-1 \bar "||"
  c4.\p (ees4 f8 | ees4.~) ees4 ees8-3 |
  f4.-1 (aes4 bes8 \appoggiatura {c,8} c'4.~) c4 8 |
  
  
}

\new Staff = "lower"
\relative c {
  \clef bass
  \key aes \major
  \time 6/8
  
  4_^-.^\f \clef treble
  8-. << { bes'-. aes-. g-. |
aes4. (g4-.) } \\
  { ees4.~ | ees~ ees4 } >> r8 \clef bass |
  4_^-.^\f \clef treble
  8-. << { des'-. c-. bes-. | c4. (bes4) } \\
   { ees,4.~ | ees~ ees4 } >> r8 \clef bass |
  
  %5
  
  4_^-.^\f \clef treble
  << { r8 r ees'''' des | c bes aes g aes g | aes4. (g4) } \\
 { ees8 ees4.~ | ees2.~ | ees4.~ ees4 } >> r8 \clef bass |
  e4. (f4) r8 | d4. (ees4) r8 |
  4_^-. r8 4^^^.\arpeggio r8 |
  R2. | R | aes,16 ees'^3 aes^2 c ees^4 aes c8^. r r |
  
  
}

\new Dynamics {
 
 s8 s8\sustainOn s2 | s4. s4 s8\sustainOff |
 s8 s8\sustainOn s2 | s4. s4 s8\sustainOff |
 s8 s8\sustainOn s2 | s4. s4 s16 s16\sustainOff |
 s2. | s | s |
 s8 s8\sustainOn s2 | s4. s4.\sustainOff |
}

  >>
  
  \layout {
indent = #0
  }
  
  }


  ___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2015-10-09 Thread tisimst
Mind sharing the source (file) that is being used when you get this error?

Thanks,
Abraham

On Friday, October 9, 2015, Mark Stephen Mrotek [via Lilypond] <
ml-node+s1069038n182215...@n5.nabble.com> wrote:

> Hello,
>
>
>
> Using Lilypond2.18.0, Frescobaldi 2.18.1.
>
> When clicking the Lilypond icon in Frescobaldi the following appears:
>
>
>
> Starting lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...Aborting
> lilypond-windows.exe 2.18.2 [Nocturne Ab.ly]...
>
> Exited with return code 62097.
>
>
>
> Please provide advice.
>
> Thank you for your kind attention.
>
>
>
> Mark Stephen Mrotek
>
> ___
> lilypond-user mailing list
> [hidden email] 
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://lilypond.1069038.n5.nabble.com/error-message-tp182215.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com
> 
> To unsubscribe from Lilypond, click here
> 
> .
> NAML
> 
>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/error-message-tp182215p182216.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2012-12-07 Thread Phil Holmes
- Original Message - 
From: "Christopher Brooks" 

To: 
Sent: Friday, December 07, 2012 3:18 PM
Subject: error message


Could someone tell me what this error message means? I seem to be getting 
this when I haven't changed anything except to add a few notes.



# -*-compilation-*-
Processing `C:/Local Work/Brooks/Improv book/New 
concept/illustrations/harmonics 8.ly'

Parsing...
Interpreting music...
Preprocessing graphical objects...
Finding the ideal number of pages...
Fitting music on 1 page...
Drawing systems...
Layout output to `/Local Work/Brooks/Improv book/New 
concept/illustrations/harmonics 8.ps'...
Converting to `/Local Work/Brooks/Improv book/New 
concept/illustrations/harmonics 8.pdf'...
warning: 
`(gs -q -dNOSAFER -dDEVICEWIDTHPOINTS=595.28 -dDEVICEHEIGHTPOINTS=841.89 -dCompatibilityLevel=1.4 
 -dNOPAUSE -dBATCH -r1200 -sDEVICE=pdfwrite -sOutputFile=/Local 
Work/Brooks/Improv book/New concept/illustrations/harmonics 
8.pdf -c.setpdfwrite -f/Local Work/Brooks/Improv book/New 
concept/illustrations/harmonics 8.ps)' failed (1)


fatal error: failed files: "C:\\Local Work\\Brooks\\Improv book\\New 
concept\\illustrations\\harmonics 8.ly"




Christopher Brooks
violinist
925 Virginia Avenue
Lancaster, PA 17603
717-291-9123
cbro...@orpheus-acoustics.com



You probably have the PDF open in a viewer, which means that it's locked and 
cannot be updated.  Ensure that the PDF is not open.


--
Phil Holmes 



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2012-12-07 Thread Eluze
Christopher Brooks wrote
> Could someone tell me what this error message means? I seem to be getting
> this when I haven't changed anything except to add a few notes.
> 
> 
> # -*-compilation-*-
> Processing `C:/Local Work/Brooks/Improv book/New
> concept/illustrations/harmonics 8.ly'
> Parsing...
> Interpreting music...
> Preprocessing graphical objects...
> Finding the ideal number of pages...
> Fitting music on 1 page...
> Drawing systems...
> Layout output to `/Local Work/Brooks/Improv book/New
> concept/illustrations/harmonics 8.ps'...
> Converting to `/Local Work/Brooks/Improv book/New
> concept/illustrations/harmonics 8.pdf'...
> warning: `(gs -q -dNOSAFER -dDEVICEWIDTHPOINTS=595.28
> -dDEVICEHEIGHTPOINTS=841.89 -dCompatibilityLevel=1.4 -dNOPAUSE -dBATCH
> -r1200 -sDEVICE=pdfwrite -sOutputFile=/Local Work/Brooks/Improv book/New
> concept/illustrations/harmonics 8.pdf -c.setpdfwrite -f/Local
> Work/Brooks/Improv book/New concept/illustrations/harmonics 8.ps)' failed
> (1)
> 
> fatal error: failed files: "C:\\Local Work\\Brooks\\Improv book\\New
> concept\\illustrations\\harmonics 8.ly"

this happens when the pdf file is locked (opened in another windows)!

Eluze



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/new-and-context-tp137198p137310.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error Message

2012-11-27 Thread Francisco Vila
2012/11/27 Zenaan Harkness :
>> I verified that the manual contains no instance of
>> "TupletSpannerDuration".  "copy and paste" has a rather fixed meaning
>> that is usually not meant to include "read and manually retyped".
>
> Aww, c'mon. What's a few [de]capitalisations or an extra char between
> computers^Wfriends?

You can avoid extra frustration if you view computers not like
friends, but rather like stupid slaves.

-- 
Francisco Vila. Badajoz (Spain)
www.paconet.org , www.csmbadajoz.com

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error Message

2012-11-26 Thread Zenaan Harkness
On 11/27/12, David Kastrup  wrote:
> David Nalesnik  writes:
>> On Mon, Nov 26, 2012 at 8:10 PM, Mark Stephen Mrotek
>>  wrote:
>>> Since I copied the following
>>> \set TupletSpannerDuration = #(ly:make-moment 1 4)
>>> from the manual and pasted it into the code, I am not sure what the
>>> error
>>> is.
>>
>> Should be "tupletSpannerDuration" with no capitalization of the first
>> letter.
>
> I verified that the manual contains no instance of
> "TupletSpannerDuration".  "copy and paste" has a rather fixed meaning
> that is usually not meant to include "read and manually retyped".

Aww, c'mon. What's a few [de]capitalisations or an extra char between
computers^Wfriends?

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error Message

2012-11-26 Thread David Kastrup
David Nalesnik  writes:

> On Mon, Nov 26, 2012 at 8:10 PM, Mark Stephen Mrotek
>  wrote:
>
>> Since I copied the following
>>
>>
>>
>> \set TupletSpannerDuration = #(ly:make-moment 1 4)
>>
>>
>>
>> from the manual and pasted it into the code, I am not sure what the error
>> is.
>>
>
> Should be "tupletSpannerDuration" with no capitalization of the first
> letter.

I verified that the manual contains no instance of
"TupletSpannerDuration".  "copy and paste" has a rather fixed meaning
that is usually not meant to include "read and manually retyped".

-- 
David Kastrup


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error Message

2012-11-26 Thread David Nalesnik
Hi Mark,

On Mon, Nov 26, 2012 at 8:10 PM, Mark Stephen Mrotek
 wrote:
> Hello:
>
>
>
> The following error message is appearing in the output log:
>
>
>
> warning: cannot find property type-check for `TupletSpannerDuration'
> (translation-type?).  perhaps a typing error?
>
> warning: doing assignment anyway
>
>
>
> Since I copied the following
>
>
>
> \set TupletSpannerDuration = #(ly:make-moment 1 4)
>
>
>
> from the manual and pasted it into the code, I am not sure what the error
> is.
>

Should be "tupletSpannerDuration" with no capitalization of the first letter.

-David

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2012-10-17 Thread Joram Berger
Dear Mark,

do you have Lilypond 2.16 installed? And have you set the correct path
in Frescobaldi? Please check in Frescobaldi something like:
Edit > Options, then Lilypond-Options. There the lilypond-windows.exe
should correspond to your Lilypond installation, which is usually in
C:\Program Files\Lilypond\usr\bin\
or where ever you installed it.

Cheers,
Joram

Am 10.10.2012 19:28, schrieb Mark Stephen Mrotek:
> After putting in code into Frescobaldi, I clicked the Lilypond icon. The
> following error message appeared:
> 
> Starting lilypond-windows.exe 2.16.0 [Untitled]...
> Could not start lilypond-windows.exe.
> Please check path and permissions.
> 
> Two previous suggestions, which I followed, were to open as
> Administrator and to set Frescobaldi preferences to use Lilypond.
> 
> Again after entering code and clicking the error message appear.
> 
> Thank you for your kind attention.
> 
> Mark Stephen Mrotek

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2012-10-11 Thread Wim van Dommelen

Hi Mark,

Very good, happy editing with Frescobaldi and LilyPond !

Regards,
Wim.

P.S. Copying to the list for the archive, in case somebody else  
searches it.


On 11 Oct 2012, at 18:11 , Mark Stephen Mrotek wrote:


Mr. van Dommelen:

It Works!

Following your instructions, this is what I did.

Open Frescobaldi, edit, preferences, Lilypond preferences, versions  
to use. This box contained only the name “Lilypond-windows.exe.”  
Minimize.
Right click Lilypond short cut on desktop, properties, copy  
“target:” C:\Program Files (x86)\LilyPond\usr\bin\lilypond- 
windows.exe. I verified this through manual tracking. Minimize
Maximize Frescobaldi, edit preferences, Lilypond preferences,  
highlight version, edit, paste target, click “set as default,”  
“apply,” and “OK.”

Paste my “code” into Frescobaldi, click Lilypond icon.
While my code did not compile, it did run!
Now I have to clean up all the errors that Lilypond found.
That is just fine by me. I learn by trial and error.

Thank you again for your kind attention to my plight. As a retired  
teacher I appreciate you patient and detailed instruction.


Mark Stephen Mrotek

From: Wim van Dommelen [mailto:m...@wimvd.nl]
Sent: Thursday, October 11, 2012 1:57 AM
To: Mark Stephen Mrotek
Cc: Lilypond User List
Subject: Re: error message

Hi Mark,

If running it as an administrator doesn't work, it might be the  
other warning is more vald. The message also says "check path", so  
that might be wrong. Running it as an administrator will "repair"  
permissions., but not paths. Your system probably just cannot find  
the right file. So: check the path!


In my version of Frescobaldi (on Linux!), the path settings are to  
be found in the menu's: "Settings / Configure Frescobaldi / Lilypond  
Preferences" which do show me a window indicating which Lilypond it  
will use. There is a "Configure" button for this. Check the path  
where to find the executable file very carefully, just one character  
(including caps, dots and spaces, etc.) makes an enormous  
difference. Search the file lilypond.exe on your system, open a  
terminal window and try: lilypond.exe --version to check if the file  
is really there where you expect it to be. (Substitute your filename  
and the complete path for "lilypond.exe". My advise: start with  
trying to avoid spaces and all special characters in the path.


If it doesn't work mail me a print-screen (offline) of the settings- 
dialog with details on the filename choosen.


Regards,
Wim.


On 10 Oct 2012, at 19:28 , Mark Stephen Mrotek wrote:


After putting in code into Frescobaldi, I clicked the Lilypond icon.  
The following error message appeared:


Starting lilypond-windows.exe 2.16.0 [Untitled]...
Could not start lilypond-windows.exe.
Please check path and permissions.

Two previous suggestions, which I followed, were to open as  
Administrator and to set Frescobaldi preferences to use Lilypond.


Again after entering code and clicking the error message appear.

Thank you for your kind attention.

Mark Stephen Mrotek
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2012-10-11 Thread Wim van Dommelen

Hi Mark,

If running it as an administrator doesn't work, it might be the other  
warning is more vald. The message also says "check path", so that  
might be wrong. Running it as an administrator will "repair"  
permissions., but not paths. Your system probably just cannot find the  
right file. So: check the path!


In my version of Frescobaldi (on Linux!), the path settings are to be  
found in the menu's: "Settings / Configure Frescobaldi / Lilypond  
Preferences" which do show me a window indicating which Lilypond it  
will use. There is a "Configure" button for this. Check the path where  
to find the executable file very carefully, just one character  
(including caps, dots and spaces, etc.) makes an enormous difference.  
Search the file lilypond.exe on your system, open a terminal window  
and try: lilypond.exe --version to check if the file is really there  
where you expect it to be. (Substitute your filename and the complete  
path for "lilypond.exe". My advise: start with trying to avoid spaces  
and all special characters in the path.


If it doesn't work mail me a print-screen (offline) of the settings- 
dialog with details on the filename choosen.


Regards,
Wim.


On 10 Oct 2012, at 19:28 , Mark Stephen Mrotek wrote:

After putting in code into Frescobaldi, I clicked the Lilypond icon.  
The following error message appeared:


Starting lilypond-windows.exe 2.16.0 [Untitled]...
Could not start lilypond-windows.exe.
Please check path and permissions.

Two previous suggestions, which I followed, were to open as  
Administrator and to set Frescobaldi preferences to use Lilypond.


Again after entering code and clicking the error message appear.

Thank you for your kind attention.

Mark Stephen Mrotek
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2012-10-10 Thread TaoCG
Mark Stephen Mrotek wrote
> After putting my code into Frescobaldi I clicked the Lilypond icon and got
> this error message:
> 
>  
> 
> Starting lilypond-windows.exe 2.16.0 [Untitled]...
> 
> Could not start lilypond-windows.exe.
> 
> Please check path and permissions.
> 
>  
> 
> Lilypond 2.16.0 is installed.
> 
>  
> 
> What do I need to do?

Hmm... did you try what the error message suggests?
In frescobaldi lilypond settings check if the command points correctly to
the windows binary on your machine. If that's not the cause try running
frescobaldi as administrator (Win7 right click -> Run as Administrator).

HTH,
Tao




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/error-message-tp134549p134571.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message

2011-09-09 Thread Marek Klein
Hello,
2011/9/9 Gerard McConnell 

> Hello,
> I haven't seen this error message before, could someone explain it please?
> I'm not sure I need to include the file, so I'll wait for info.
>


You have to close your PDF viewer, thats my guess.
HTH,

Marek
--
Marek Klein
http://gregoriana.sk
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error Message

2011-09-08 Thread Éditions IN NOMINE

Hi.

If you don't send any code, I won't be able to help you.
Try to comment all lines, and uncomment them at each successfull try.

Best
JMarc

Nels Daily a écrit :
Getting a message that asks if I want CONTINUE or QUIT because of an error. 
With a couple retries I can make it compile,

so it can't be that my syntax is wrong.
This is the message:
An unexpected error occurred.

(UnicodeDecodeError: 
'utf8' codec can't decode bytes in position 1022-1023: 
unexpected end of data)



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

  


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


RE: Error Message

2010-06-05 Thread James Lowe
Sorry to reply to my own post, but we have improved the documentation on this 
(and some other basics like this) here

http://lilypond.org/doc/v2.13/Documentation/learning-big-page#index-version-number

While 2.13 is considered 'unstable', most (if not all) of the Learning Manual 
for this version will still apply to the version you have.

Regards

James


-Original Message-
From: lilypond-user-bounces+james.lowe=datacore@gnu.org on behalf of James 
Lowe
Sent: Sat 05/06/2010 9:47
To: James Bailey; Richard Lockwood
Cc: lilypond-user Mailinglist
Subject: RE: Error Message
 
http://lilypond.org/doc/v2.12/Documentation/user/lilypond-learning-big-page#Version-number

-Original Message-
From: lilypond-user-bounces+james.lowe=datacore@gnu.org on behalf of James 
Bailey
Sent: Sat 05/06/2010 8:02
To: Richard Lockwood
Cc: lilypond-user Mailinglist
Subject: Re: Error Message
 

On 03.06.2010, at 13:17, Richard Lockwood wrote:

> Hello Support,
>
> Downloaded Mac version lilypond-2.12.3-1.darwin-ppc.tar.bz2 (I have  
> a G5 10.4.11
> PPC). Unzipped file, dragged app. into apps. folder and installed  
> an alias in
> the dock. Ran the app. as per instructions: saved the file,   
> compiled it and
> clicked on one of the noteheads of the pdf. All good.
> Then I started to write my own file. The notation is correct but I  
> get an the
> following error message when I run "compile" - "typeset file":
> /Users/richardlockwood/Richard/Lilypond/Singing Name Singing.ly:0  
> warning: no
> \version statement found, pleas add \version "2.12.3" (this is the  
> version I
> have installed?)
>
> Regards,
> Richard

For future reference, questions such as this are better suited for  
the -user list. For you information, this message is generated when  
your input file lacks a version statement. The error tells you to  
quite literally, add the line, \version "2.12.3" to your input file.

Hope this helps.

___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


RE: Error Message

2010-06-05 Thread James Lowe
http://lilypond.org/doc/v2.12/Documentation/user/lilypond-learning-big-page#Version-number

-Original Message-
From: lilypond-user-bounces+james.lowe=datacore@gnu.org on behalf of James 
Bailey
Sent: Sat 05/06/2010 8:02
To: Richard Lockwood
Cc: lilypond-user Mailinglist
Subject: Re: Error Message
 

On 03.06.2010, at 13:17, Richard Lockwood wrote:

> Hello Support,
>
> Downloaded Mac version lilypond-2.12.3-1.darwin-ppc.tar.bz2 (I have  
> a G5 10.4.11
> PPC). Unzipped file, dragged app. into apps. folder and installed  
> an alias in
> the dock. Ran the app. as per instructions: saved the file,   
> compiled it and
> clicked on one of the noteheads of the pdf. All good.
> Then I started to write my own file. The notation is correct but I  
> get an the
> following error message when I run "compile" - "typeset file":
> /Users/richardlockwood/Richard/Lilypond/Singing Name Singing.ly:0  
> warning: no
> \version statement found, pleas add \version "2.12.3" (this is the  
> version I
> have installed?)
>
> Regards,
> Richard

For future reference, questions such as this are better suited for  
the -user list. For you information, this message is generated when  
your input file lacks a version statement. The error tells you to  
quite literally, add the line, \version "2.12.3" to your input file.

Hope this helps.

___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error Message

2010-06-05 Thread James Bailey


On 03.06.2010, at 13:17, Richard Lockwood wrote:


Hello Support,

Downloaded Mac version lilypond-2.12.3-1.darwin-ppc.tar.bz2 (I have  
a G5 10.4.11
PPC). Unzipped file, dragged app. into apps. folder and installed  
an alias in
the dock. Ran the app. as per instructions: saved the file,   
compiled it and

clicked on one of the noteheads of the pdf. All good.
Then I started to write my own file. The notation is correct but I  
get an the

following error message when I run "compile" - "typeset file":
/Users/richardlockwood/Richard/Lilypond/Singing Name Singing.ly:0  
warning: no
\version statement found, pleas add \version "2.12.3" (this is the  
version I

have installed?)

Regards,
Richard


For future reference, questions such as this are better suited for  
the -user list. For you information, this message is generated when  
your input file lacks a version statement. The error tells you to  
quite literally, add the line, \version "2.12.3" to your input file.


Hope this helps.

___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-21 Thread Boris Shingarov

On Tue, 20 Apr 2010 07:28:49  0200 (CEST), Martin Tarenskeen  wrote:


Did you start evince from the commandline ?

 
Yes, of course.
Which version of poppler do you use?
 
 
 
 
 
 
 
 



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-21 Thread Boris Shingarov

I am not getting anything abormal when viewing your example with my
local installation of evince (evince 2.28.1, poppler 0.12.0(cairo)). 
Nor do Okular nor Acrobat report anything bad.

On Mon, 19 Apr 2010 21:58:38  0100, Neil Puttock  wrote:
On 19 April 2010 18:01, Graham Percival  wrote:
 >
 > > Thanks!  This looks like a great report.  Bug squad, could
 > > somebody add this to the tracker?
 >
 > I think this is beyond our control, since reports for various
 > distributions are suggesting it's a libpoppler bug.
 >
 > There's a bugreport and patch here:
 > https://bugs.freedesktop.org/show_bug.cgi?id=27728
 



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-19 Thread Neil Puttock
On 19 April 2010 18:01, Graham Percival  wrote:

> Thanks!  This looks like a great report.  Bug squad, could
> somebody add this to the tracker?

I think this is beyond our control, since reports for various
distributions are suggesting it's a libpoppler bug.

There's a bugreport and patch here:
https://bugs.freedesktop.org/show_bug.cgi?id=27728


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-19 Thread Martin Tarenskeen



On Mon, 19 Apr 2010, Graham Percival wrote:


On Sun, Apr 18, 2010 at 07:25:29PM +0200, Martin Tarenskeen wrote:


OK. Here is a tiny example (attached).


Thanks!  This looks like a great report.  Bug squad, could
somebody add this to the tracker?


To add one remark: It might have something to do with the Dynamics 
context. If I comment that one out, the messages disappear.


--

Martin Tarenskeen




Cheers,
- Graham


1. I use Lilypond 2.13.18 on Fedora 12 to compile
2. I start Evince from my terminal to view the pdf. Looks fine to me.
3. I close Evince.
4. I see that Evince has left some messages in my terminal:

** (evince:8380): WARNING **: Failed to create dbus proxy for
org.gnome.SettingsDaemon: Could not get owner of name
'org.gnome.SettingsDaemon': no such name
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap

Press ENTER or type command to continue

--


Martin Tarenskeen



\version "2.13.18"

upper = \relative c' { \clef treble c1 }
lower = \relative c { \clef bass c1 }
dynamics = { s1\mf }

\score {
  \new PianoStaff {
<<
  \new Staff { \upper }
  \new Dynamics { \dynamics }
  \new Staff { \lower }
   >>
  }
  \layout {}
}






___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-19 Thread Graham Percival
On Sun, Apr 18, 2010 at 07:25:29PM +0200, Martin Tarenskeen wrote:
>
> OK. Here is a tiny example (attached).

Thanks!  This looks like a great report.  Bug squad, could
somebody add this to the tracker?

Cheers,
- Graham

> 1. I use Lilypond 2.13.18 on Fedora 12 to compile
> 2. I start Evince from my terminal to view the pdf. Looks fine to me.
> 3. I close Evince.
> 4. I see that Evince has left some messages in my terminal:
>
> ** (evince:8380): WARNING **: Failed to create dbus proxy for  
> org.gnome.SettingsDaemon: Could not get owner of name  
> 'org.gnome.SettingsDaemon': no such name
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
>
> Press ENTER or type command to continue
>
> -- 
>
>
> Martin Tarenskeen

> \version "2.13.18"
> 
> upper = \relative c' { \clef treble c1 } 
> lower = \relative c { \clef bass c1 }
> dynamics = { s1\mf }
> 
> \score {
>   \new PianoStaff {
> <<
>   \new Staff { \upper }
>   \new Dynamics { \dynamics }
>   \new Staff { \lower }
> >>
>   }
>   \layout {}
> }
> 



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-18 Thread Jonathan Kulp
On Sun, Apr 18, 2010 at 12:25 PM, Martin Tarenskeen
 wrote:
> On Sun, 18 Apr 2010, Graham Percival wrote:
>
>> We don't want to see any copyrighted file; quite apart from the
>> legal issue, that would be too long.  Please create a tiny
>> example:
>
> OK. Here is a tiny example (attached).
>
> 1. I use Lilypond 2.13.18 on Fedora 12 to compile
> 2. I start Evince from my terminal to view the pdf. Looks fine to me.
> 3. I close Evince.
> 4. I see that Evince has left some messages in my terminal:
>
> ** (evince:8380): WARNING **: Failed to create dbus proxy for
> org.gnome.SettingsDaemon: Could not get owner of name
> 'org.gnome.SettingsDaemon': no such name
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
> Error: Illegal entry in bfrange block in ToUnicode CMap
>
> Press ENTER or type command to continue
>

This happens to me, too. I'm also running Fedora 12. My solution is to
use Acrobat Reader instead of Evince. Slower, but no more errors.

Jon
-- 
Jonathan Kulp
http://www.jonathankulp.com


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-18 Thread Martin Tarenskeen



On Sun, 18 Apr 2010, Graham Percival wrote:


We don't want to see any copyrighted file; quite apart from the
legal issue, that would be too long.  Please create a tiny
example:


OK. Here is a tiny example (attached).

1. I use Lilypond 2.13.18 on Fedora 12 to compile
2. I start Evince from my terminal to view the pdf. Looks fine to me.
3. I close Evince.
4. I see that Evince has left some messages in my terminal:

** (evince:8380): WARNING **: Failed to create dbus proxy for 
org.gnome.SettingsDaemon: Could not get owner of name 
'org.gnome.SettingsDaemon': no such name

Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap
Error: Illegal entry in bfrange block in ToUnicode CMap

Press ENTER or type command to continue

--


Martin Tarenskeen\version "2.13.18"

upper = \relative c' { \clef treble c1 } 
lower = \relative c { \clef bass c1 }
dynamics = { s1\mf }

\score {
  \new PianoStaff {
<<
  \new Staff { \upper }
  \new Dynamics { \dynamics }
  \new Staff { \lower }
>>
  }
  \layout {}
}

___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-18 Thread Martin Tarenskeen



On Sun, 18 Apr 2010, Graham Percival wrote:


We don't want to see any copyrighted file; quite apart from the
legal issue, that would be too long.  Please create a tiny
example:


Yes, I know and agree. I'll see I can strip as many notes as possible 
until the error message disappears.



I could attach the lilypond source file, but it is copyrighted material
so if anyone needs it for bughunting/fixing I would rather send it via
private mail.


--

Martin Tarenskeen



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message from PDF viewer

2010-04-18 Thread Graham Percival
We don't want to see any copyrighted file; quite apart from the
legal issue, that would be too long.  Please create a tiny
example:
http://lilypond.org/website/tiny-examples.html

Cheers,
- Graham


On Sun, Apr 18, 2010 at 06:34:26PM +0200, Martin Tarenskeen wrote:
>
> Hi,
>
> When I load a PDF file I just created from a Lilypond score, starting my  
> viewer (Evince) from the commandline, I see several messages on my  
> terminal saying:
>
> Error: Illegal entry in bfrange block in ToUnicode CMap
>
> It does not seem to hurt much since my score looks fine. But did anyone  
> see this message before. Does anyone know where it could be coming from ?
>
> I could attach the lilypond source file, but it is copyrighted material 
> so if anyone needs it for bughunting/fixing I would rather send it via  
> private mail.
>
> -- 
>
> Martin Tarenskeen
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> http://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message I don't understand

2008-12-28 Thread Jonathan Kulp

Stefan Thomas wrote:

Dear Trevor,
thanks for Your advice! Now it works!

2008/12/28 Trevor Daniels :

A stencil cannot be overridden to #t.  You need to use \revert
to recover the default behaviour (if that is what you intended):

mitzahl ={ \revert TupletNumber #'stencil }

Trevor


Thanks from me, too.  This warning always annoyed me but I didn't bother 
to track it down since my score looked like I wanted it to.  Thanks 
Trevor. :)


Jon
--
Jonathan Kulp
http://www.jonathankulp.com


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message I don't understand

2008-12-28 Thread Stefan Thomas
Dear Trevor,
thanks for Your advice! Now it works!

2008/12/28 Trevor Daniels :
> A stencil cannot be overridden to #t.  You need to use \revert
> to recover the default behaviour (if that is what you intended):
>
> mitzahl ={ \revert TupletNumber #'stencil }
>
> Trevor
>
> - Original Message - From: "Stefan Thomas"
> 
> To: "lilypond-user" 
> Sent: Sunday, December 28, 2008 11:54 AM
> Subject: error message I don't understand
>
>
>> Dear lilpond-users,
>> when compiling the below quoted file I get the error message:
>> warning: type check for `stencil' failed; value `#t' must be of type
>> `unknown'
>> I think it has to do with the tuplets, but I don't understand, what
>> I've done wrong. Here is the snippet:
>>
>>
>> \version "2.11.65."
>> klammernormal = {  \override TupletBracket #'bracket-visibility =
>> #'if-no-beam }
>> % Klammer und Zahl werden  ganz normal gezeigt
>> klammeran =  { \override TupletBracket #'bracket-visibility = ##t }
>> klammeraus = { \override TupletBracket #'bracket-visibility = ##f }
>> mitzahl ={ \override TupletNumber #'stencil = ##t }
>> ohnezahl = { \override TupletNumber #'stencil = ##f }
>> standardxtol = { \klammernormal \mitzahl }
>>
>> \relative {
>> \times 2/3  { c8  d e } \ohnezahl \times 2/3 { f e f } \standardxtol
>> \times 2/3  { d e f }
>> \times 2/3 { g f g } }
>>
>>
>> ___
>> lilypond-user mailing list
>> lilypond-user@gnu.org
>> http://lists.gnu.org/mailman/listinfo/lilypond-user
>
>


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message I don't understand

2008-12-28 Thread Trevor Daniels

A stencil cannot be overridden to #t.  You need to use \revert
to recover the default behaviour (if that is what you intended):

mitzahl ={ \revert TupletNumber #'stencil }

Trevor

- Original Message - 
From: "Stefan Thomas" 

To: "lilypond-user" 
Sent: Sunday, December 28, 2008 11:54 AM
Subject: error message I don't understand



Dear lilpond-users,
when compiling the below quoted file I get the error message:
warning: type check for `stencil' failed; value `#t' must be of type 
`unknown'

I think it has to do with the tuplets, but I don't understand, what
I've done wrong. Here is the snippet:


\version "2.11.65."
klammernormal = {  \override TupletBracket #'bracket-visibility = 
#'if-no-beam }

% Klammer und Zahl werden  ganz normal gezeigt
klammeran =  { \override TupletBracket #'bracket-visibility = ##t }
klammeraus = { \override TupletBracket #'bracket-visibility = ##f }
mitzahl ={ \override TupletNumber #'stencil = ##t }
ohnezahl = { \override TupletNumber #'stencil = ##f }
standardxtol = { \klammernormal \mitzahl }

\relative {
\times 2/3  { c8  d e } \ohnezahl \times 2/3 { f e f } \standardxtol
\times 2/3  { d e f }
\times 2/3 { g f g } }


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user 




___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message using 2.11.50-1

2008-07-03 Thread Jonathan Kulp
Thanks Valentin.  I changed it to \tempo and it worked fine.  All is 
good!  Best,


Jonathan

Valentin Villenave wrote:

2008/7/3 Jonathan Kulp <[EMAIL PROTECTED]>:


I just installed the latest build and when I ran the file I'm working on, it
came back with this error, which I think has to do with a macro included
near the top of the document.


Yeah, I get the same error with the same macro. The good news is, you
can now use \tempo everywhere instead of \movement.


Cheers,
Valentin



--
Jonathan Kulp
http://www.jonathankulp.com


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message using 2.11.50-1

2008-07-03 Thread Valentin Villenave
2008/7/3 Jonathan Kulp <[EMAIL PROTECTED]>:

> I just installed the latest build and when I ran the file I'm working on, it
> came back with this error, which I think has to do with a macro included
> near the top of the document.

Yeah, I get the same error with the same macro. The good news is, you
can now use \tempo everywhere instead of \movement.


Cheers,
Valentin


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message using 2.11.50-1

2008-07-03 Thread James E. Bailey


Am 03.07.2008 um 04:17 schrieb Jonathan Kulp:


Hi everyone,

I just installed the latest build and when I ran the file I'm  
working on, it came back with this error, which I think has to do  
with a macro included near the top of the document.



[EMAIL PROTECTED]:~/Desktop$ tarantella
running tarantella file now...
GNU LilyPond 2.11.50
Processing `tarantella.ly'
Parsing...
Interpreting music... /usr/local/lilypond/usr/share/lilypond/current/ 
scm/lily-library.scm:135:5: In procedure format-movement-markup in  
expression (process-procedure book paper ...):
/usr/local/lilypond/usr/share/lilypond/current/scm/lily-library.scm: 
135:5: Wrong number of arguments to #markup (dur count context)>




Usually when I get these error messages, it's because I have an  
unbalanced < or "



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error Message

2008-02-08 Thread Valentin Villenave
2008/2/5, Mats Bengtsson <[EMAIL PROTECTED]>:
> Working with a copy of the file, you can try to comment out
> (or remove) sections of the file to narrow down where the problem is.

...or you can use the LilyPondTool plugin for the jEdit editor, that
highlights such errors in real time: http://lilypondtool.organum.hu/

Cheers,
Valentin


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error Message

2008-02-05 Thread Mats Bengtsson

Usually, such error messages mean that you have some completely different
syntax error in your file, such as curly braces that don't match.
Unfortunately, it's very hard for LilyPond to detect all such syntax errors
and provide a readable error message. This also means that you have to do
some careful searching yourself in the file to figure out exactly what the
problem is. Working with a copy of the file, you can try to comment out
(or remove) sections of the file to narrow down where the problem is.

  /Mats

George_ wrote:
When I try to generate my .ly file, I get the following error message 
in the log: # -*-compilation-*- Changing working directory to 
`C:/Documents and Settings/George/Desktop' Processing `C:/Documents 
and Settings/George/Desktop/Derbenko Scherzo.ly' Parsing... 
E:/Temp/Lilypond/usr/bin/../share/lilypond/current/ly/init.ly:32:0: 
error: syntax error, unexpected SCM_TOKEN #(if (and (ly:get-option 
'old-relative) error: failed files: "C:\\Documents and 
Settings\\George\\Desktop\\Derbenko Scherzo.ly" What's happening, and 
how do I fix this? Thanks


View this message in context: Error Message 

Sent from the Gnu - Lilypond - User mailing list archive 
 at Nabble.com.



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user
  


--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2007-01-23 Thread Manuel


Am 23/01/2007 um 13:03 schrieb Mats Bengtsson:


Please always tell what LilyPond version you use and on what operating
system (here I guess from your error message that you use MacOS).

  /Mats


Yes, it is version 2.10.0 on Mac OS 10.4.8

Manuel





Manuel wrote:
Whenever I work with somewhat large files, LilyPond takes either  
an extremely long time to compile or just stops working. The last  
time it happened, a new window opened with this information:


(error: NSInternalInconsistencyException - Error (1000) creating  
CGSWindow)

See the Console for a detailed traceback.

In the Console, I found:

  File "/Applications/LilyPond.app/Contents/Resources/ 
__boot__.py", line 28, in ?

_run('LilyPond.py')
  File "/Applications/LilyPond.app/Contents/Resources/ 
__boot__.py", line 25, in _run
execfile(os.path.join(base, 'Python', script), globals(),  
globals())
  File "/Applications/LilyPond.app/Contents/Resources/Python/ 
LilyPond.py", line 214, in ?

AppHelper.runEventLoop()
  File "PyObjCTools/AppHelper.pyc", line 174, in runEventLoop
objc.error: NSInternalInconsistencyException - Error (1000)  
creating CGSWindow

2007-01-21 23:19:33.328 LilyPond[286] LilyPond Error
2007-01-21 23:19:33.329 LilyPond[286] An unexpected error has  
occurred during execution of the main script



I divided the file into smaller portions and it works perfectly,  
but I don't understand why I have so much trouble otherwise. Is it  
a mistake in my input?


Manuel


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=





___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2007-01-23 Thread Mats Bengtsson

Please always tell what LilyPond version you use and on what operating
system (here I guess from your error message that you use MacOS).

  /Mats

Manuel wrote:
Whenever I work with somewhat large files, LilyPond takes either an 
extremely long time to compile or just stops working. The last time it 
happened, a new window opened with this information:


(error: NSInternalInconsistencyException - Error (1000) creating 
CGSWindow)

See the Console for a detailed traceback.

In the Console, I found:

  File "/Applications/LilyPond.app/Contents/Resources/__boot__.py", 
line 28, in ?

_run('LilyPond.py')
  File "/Applications/LilyPond.app/Contents/Resources/__boot__.py", 
line 25, in _run

execfile(os.path.join(base, 'Python', script), globals(), globals())
  File 
"/Applications/LilyPond.app/Contents/Resources/Python/LilyPond.py", 
line 214, in ?

AppHelper.runEventLoop()
  File "PyObjCTools/AppHelper.pyc", line 174, in runEventLoop
objc.error: NSInternalInconsistencyException - Error (1000) creating 
CGSWindow

2007-01-21 23:19:33.328 LilyPond[286] LilyPond Error
2007-01-21 23:19:33.329 LilyPond[286] An unexpected error has occurred 
during execution of the main script



I divided the file into smaller portions and it works perfectly, but I 
don't understand why I have so much trouble otherwise. Is it a mistake 
in my input?


Manuel


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2006-04-29 Thread Mats Bengtsson

I would recommend to upgrade to the new stable version 2.8.
If you search the mailing list archives of bug-lilypond, you might be 
lucky to find something related but don't expect anyone to come up with 
a fix for such an old version of the program.


  /Mats

Quoting Vivian Barty-Taylor <[EMAIL PROTECTED]>:


I'm using 2.6.1

I'm getting an odd error message. The file appears to
parse and process correctly. Then after Lilypond has
computed the line and page breaks I get the messages

ERROR: In procedure ly_scm2double:
ERROR: Wrong type argument: (-8)

The file then appears not to have written to the PDF
(I get the previous version I saved without the new
changes.)

Does anyone know what this is?

Many thanks,
Vivian.

My new website - www.vivbt.tk





___
Win tickets to the 2006 FIFA World Cup Germany with Yahoo! Messenger. 
http://advision.webevents.yahoo.com/fifaworldcup_uk/



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user







___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message lilypond 2.4.2 on cygwin - Logfile

2004-11-12 Thread Bertalan Fodor
It's caused by setting the fontencoding to T1. The default font in the 
T1 encoding maps to ecrm that maps to ecrm1000. Perhaps TeX always 
create the default font? I don't know where this latter mapping set.

Bert
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message lilypond 2.4.2 on cygwin - Logfile

2004-11-12 Thread Bertalan Fodor
No,
\header {
   title = "something"
}
\score { c}
...
(/usr/share/texmf/tex/latex/base/inputenc.sty
kpathsea: Running mktextfm ecrm1000
(/usr/share/texmf/tex/latex/base/latin1.def))
No file proba.aux.
/usr/share/texmf/web2c/mktexnam: Could not map source abbreviation  for 
ecrm1000.
/usr/share/texmf/web2c/mktexnam: Need to update ?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; 
nonstopmode; input ecrm1000
This is METAFONT, Version 2.7182 (Web2C 7.4.5)
kpathsea: Running mktexmf ecrm1000
! I can't find file `ecrm1000'.
<*> ...ljfour; mag:=1; nonstopmode; input ecrm1000
Please type another input file name
! Emergency stop.
<*> ...ljfour; mag:=1; nonstopmode; input ecrm1000
Transcript written on mfput.log.
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1000' failed.
kpathsea: Appending font creation commands to missfont.log.
...

In version 2.4.x, the jknappen fonts shouldn't be used at all.
Are you sure that you didn't try some old input file that
explicitly set font-name to ecrm1000?


___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message lilypond 2.4.2 on cygwin - Logfile

2004-11-12 Thread Mats Bengtsson
In version 2.4.x, the jknappen fonts shouldn't be used at all.
Are you sure that you didn't try some old input file that
explicitly set font-name to ecrm1000?
   /Mats
Bertalan Fodor wrote:
Somehow it tries to use ecrm1000 from jknappen's ec fonts package 
instead of ec-fonts-mftraced... It tries to use it at me also, but I 
have it.

I really don't know why it tries to use it... Perhaps the others know...
Bert
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user
--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message lilypond 2.4.2 on cygwin - Logfile

2004-11-12 Thread Bertalan Fodor
Somehow it tries to use ecrm1000 from jknappen's ec fonts package 
instead of ec-fonts-mftraced... It tries to use it at me also, but I 
have it.

I really don't know why it tries to use it... Perhaps the others know...
Bert
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message lilypond 2.4.2 on cygwin - Logfile

2004-11-12 Thread Thomas Scharkowski

> lilypond --verbose /cygdrive/f/lilypond/gitarre/Carulli/test24.ly 
GNU LilyPond 2.4.2
LILYPOND_DATADIR="/usr/share/lilypond"
LOCAL_LILYPOND_DATADIR="/usr/share/lilypond/2.4.2"
LOCALEDIR="/usr/share/locale"
LILYPONDPREFIX=""
[/usr/share/lilypond/2.4.2/scm/lily-
library.scm][/usr/share/lilypond/2.4.2/scm/define-music-
types.scm][/usr/share/lilypond/2.4.2/scm/output-
lib.scm][/usr/share/lilypond/2.4.2/scm/c++.scm][/usr/share/lilypond/2.
4.2/scm/chord-ignatzek-names.scm][/usr/share/lilypond/2.4.2/scm/chord-
entry.scm][/usr/share/lilypond/2.4.2/scm/chord-generic-
names.scm][/usr/share/lilypond/2.4.2/scm/stencil.scm][/usr/share/lilyp
ond/2.4.2/scm/new-markup.scm][/usr/share/lilypond/2.4.2/scm/bass-
figure.scm][/usr/share/lilypond/2.4.2/scm/music-
functions.scm][/usr/share/lilypond/2.4.2/scm/part-
combiner.scm][/usr/share/lilypond/2.4.2/scm/define-music-
properties.scm][/usr/share/lilypond/2.4.2/scm/auto-
beam.scm][/usr/share/lilypond/2.4.2/scm/chord-
name.scm][/usr/share/lilypond/2.4.2/scm/ly-from-
scheme.scm][/usr/share/lilypond/2.4.2/scm/define-context-
properties.scm][/usr/share/lilypond/2.4.2/scm/translation-
functions.scm][/usr/share/lilypond/2.4.2/scm/script.scm][/usr/share/li
lypond/2.4.2/scm/midi.scm][/usr/share/lilypond/2.4.2/scm/beam.scm][/uP
rocessing `/cygdrive/f/lilypond/gitarre/Carulli/test24.ly'
Parsing...
[/usr/share/lilypond/2.4.2/ly/init.ly[/usr/share/lilypond/2.4.2/ly/dec
larations-init.ly[/usr/share/lilypond/2.4.2/ly/music-functions-
init.ly][/usr/share/lilypond/2.4.2/ly/nederlands.ly][/usr/share/lilypo
nd/2.4.2/ly/drumpitch-init.ly][/usr/share/lilypond/2.4.2/ly/chord-
modifiers-init.ly][/usr/share/lilypond/2.4.2/ly/script-
init.ly][/usr/share/lilypond/2.4.2/ly/scale-definitions-
init.ly][/usr/share/lilypond/2.4.2/ly/grace-
init.ly][/usr/share/lilypond/2.4.2/ly/midi-
init.ly[/usr/share/lilypond/2.4.2/ly/performer-
init.ly]][/usr/share/lilypond/2.4.2/ly/paper-
defaults.ly][/usr/share/lilypond/2.4.2/ly/engraver-
init.ly][/usr/share/lilypond/2.4.2/ly/dynamic-scripts-
init.ly][/usr/share/lilypond/2.4.2/ly/spanners-
init.ly][/usr/share/lilypond/2.4.2/ly/property-
init.ly]][/cygdrive/f/lilypond/gitarre/Carulli/test24.ly]Interpreting 
music... elapsed time: 0.05 seconds
MIDI output to `test24.midi'...
Track... [0]
Interpreting music... 
[/usr/share/lilypond/2.4.2/fonts/afm/feta20.afm][/usr/share/lilypond/2
.4.2/fonts/tfm/feta20.tfm[/usr/share/lilypond/2.4.2/ps/feta20.enc]][8]
[16][24][25]elapsed time: 0.48 seconds
Element count 780 (spanners 28) Preprocessing graphical objects... 
Grob count 
1292[/usr/share/lilypond/2.4.2/fonts/afm/feta11.afm][/usr/share/lilypo
nd/2.4.2/fonts/tfm/feta11.tfm][/usr/share/lilypond/2.4.2/fonts/afm/par
mesan11.afm][/usr/share/lilypond/2.4.2/fonts/tfm/parmesan11.tfm[/usr/s
hare/lilypond/2.4.2/ps/parmesan20.enc]][/usr/share/lilypond/2.4.2/font
s/afm/feta13.afm][/usr/share/lilypond/2.4.2/fonts/tfm/feta13.tfm][/usr
/share/lilypond/2.4.2/fonts/afm/parmesan13.afm][/usr/share/lilypond/2.
4.2/fonts/tfm/parmesan13.tfm][/usr/share/lilypond/2.4.2/fonts/afm/feta
14.afm][/usr/share/lilypond/2.4.2/fonts/tfm/feta14.tfm][/usr/share/lil
ypond/2.4.2/fonts/afm/parmesan14.afm][/usr/share/lilypond/2.4.2/fonts/
tfm/parmesan14.tfm][/usr/share/lilypond/2.4.2/fonts/afm/feta16.afm][/u
sr/share/lilypond/2.4.2/fonts/tfm/feta16.tfm][/usr/share/lilypond/2.4.
2/fonts/afm/parmesan16.afm][/usr/share/lilypond/2.4.2/fonts/tfm/parmes
an16.tfm][/usr/share/lilypond/2.4.2/fonts/afm/feta18.afm][/usr/share/l
ilypond/2.4.2/fonts/tfm/feta18.tfm][/usr/share/lilypond/2.4.2/fonts/af
m/parmesan18.afm][/usr/share/lilypond/2.4.2/fonts/tfm/parmesan18.tfm][
/usr/share/lilypond/2.4.2/fonts/afm/parmesan20.afm][/usr/share/lilypon
d/2.4.2/fonts/tfm/parmesan20.tfm][/usr/share/lilypond/2.4.2/fonts/afm/
feta23.afm][/usr/share/lilypond/2.4.2/fonts/tfm/feta23.tfm][/usr/share
/lilypond/2.4.2/fonts/afm/parmesan23.afm][/usr/share/lilypond/2.4.2/fo
nts/tfm/parmesan23.tfm][/usr/share/lilypond/2.4.2/fonts/afm/feta26.afm
][/usr/share/lilypond/2.4.2/fonts/tfm/feta26.tfm][/usr/share/lilypond/
2.4.2/fonts/afm/parmesan26.afm][/usr/share/lilypond/2.4.2/fonts/tfm/pa
rmesan26.tfm]
Calculating line breaks... Global shortest duration is 1/8
[/usr/share/lilypond/2.4.2/fonts/afm/feta-
nummer4.afm][/usr/share/lilypond/2.4.2/fonts/tfm/feta-
nummer4.tfm[/usr/share/lilypond/2.4.2/ps/feta-
nummer10.enc]][/usr/share/lilypond/2.4.2/fonts/afm/feta-
nummer6.afm][/usr/share/lilypond/2.4.2/fonts/tfm/feta-
nummer6.tfm][/usr/share/lilypond/2.4.2/fonts/afm/feta-
nummer8.afm][/usr/share/lilypond/2.4.2/fonts/tfm/feta-
nummer8.tfm][/usr/share/lilypond/2.4.2/fonts/afm/feta-
nummer10.afm][/usr/share/lilypond/2.4.2/fonts/tfm/feta-
nummer10.tfm][/usr/share/lilypond/2.4.2/fonts/afm/feta-
nummer12.afm][/usr/share/lilypond/2.4.2/fonts/tfm/feta-
nummer12.tfm][/usr/share/lilypond/2.4.2/tex/latin1.enc][/usr/share/tex
mf/fonts/tfm/public/ec-fonts-
mftraced/ecbx6.tfm[/usr/share/texmf/dvips/base/tex256.enc]][/usr/share
/texmf/fonts/tfm/public/ec-fonts-
mftraced/ecbx8.tfm][

Re: Error message lilypond 2.4.2 on cygwin

2004-11-12 Thread Bertalan Fodor
And please send the log file latex created: it will contain the error 
message.

Bert
Mats Bengtsson wrote:
Please rerun (from the cygwin command line) with the flag
lilypond --verbose myfile.ly
which should give more information on what actually fails.
   /Mats
Thomas Scharkowski wrote:
Hi all,
I have just installed lilypond 2.4.2 from Bertalan Fodor.
Everything seems to work, but I get this error message:
--
Error invoking `latex \\nonstopmode \\input test24.tex > /dev/null 
2>&1 '. Return value 256
--

Thank you,
Thomas
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message lilypond 2.4.2 on cygwin

2004-11-12 Thread Mats Bengtsson
Please rerun (from the cygwin command line) with the flag
lilypond --verbose myfile.ly
which should give more information on what actually fails.
   /Mats
Thomas Scharkowski wrote:
Hi all,
I have just installed lilypond 2.4.2 from Bertalan Fodor.
Everything seems to work, but I get this error message:
--
Error invoking `latex \\nonstopmode \\input test24.tex > /dev/null 
2>&1 '. Return value 256
--

Thank you,
Thomas
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user
--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: error message with lily2.2.0

2004-08-04 Thread Mats Bengtsson
It seems that you don't have a sufficiently recent version of the guile
package installed.
   /Mats
Jean Marc LEGRAND wrote:
Hi list !
I've just installed lily2.2.0 under my mdk10.0. Installation was no trouble at all.
But while runing lily on test.ly, I have this error message :
[EMAIL PROTECTED] LILYPOND]$ lilypond --verbose test.ly
lilypond (GNU LilyPond) 2.2.0
Ouverture du pipe `/usr/bin/lilypond-bin --version '
Ouverture du pipe `kpsexpand \$TEXMF'
Ouverture du pipe `kpsewhich -expand-path=\$T1FONTS'
Invocation de « /usr/bin/lilypond-bin  -I /home/parents/Documents/LILYPOND -I /h
ome/parents/Documents/LILYPOND -I /home/parents/Documents/LILYPOND -H dedication
 -H title -H subtitle -H subsubtitle -H footer -H head -H composer -H arranger -
H instrument -H opus -H piece -H metre -H meter -H poet -H texttranslator -H tex
theight -H orientation -H language -H latexpackages -H papersize -H pagenumber -
H latexheaders -H latexoptions -H linewidth -H unit --verbose test »
lilypond_datadir: `/usr/share/lilypond'
local_lilypond_datadir: `/usr/share/lilypond/2.2.0'
localedir: `/usr/share/locale'
LILYPONDPREFIX: `'
/usr/share/guile/1.6/srfi/srfi-13.scm:159:1: In procedure dynamic-link in expression (load-extension 
"libguile-srfi-srfi-13-14-v-1" "scm_init_srfi_13"):
/usr/share/guile/1.6/srfi/srfi-13.scm:159:1: file: "libguile-srfi-srfi-13-14-v-1  
", message: "libguile-srfi-srfi-13-14-v-1.so: cannot open shared object file: No  such file or 
directory"
lilypond: warning: `lilypond-bin' a échoué (status 2) (ignoré)
lilypond: error: Échec de lilypond sur le fichier d'entrée test (statut 
d'exécution 2).
Traceback (most recent call last):
  File "/usr/bin/lilypond", line 867, in ?
run_lilypond (files, dep_prefix)
  File "/usr/bin/lilypond", line 292, in run_lilypond
ly.exit (status)
  File "/usr/share/lilypond/2.2.0/python/lilylib.py", line 130, in exit
raise _ ('Exiting (%d)...') % i
Fin d'exécution (512)...

I'm truly sorry, but I don't understand it, and I'm not very clever in computer 
litterature... I would be so gratefull to any help !
Regards
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user
--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=
___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Error message

2003-12-05 Thread Mats Bengtsson
It seems that convert-ly does some errors in converting
\spanrequest \start "text"
Just edit your converted file and replace, for example,
#(ly:export (make-span-event 'TextSpanEvent START) g8)
with
\startTextSpan g8
and
#(ly:export (make-span-event 'TextSpanEvent STOP))
with
\stopTextSpan
   /Mats

Thomas Dent wrote:
Hi, I've just converted a large file from 1.5.x to 2.0 and it seems to be
failing at one point. The log file is as follows:
*

lilypond (GNU LilyPond) 2.0.1
Running usr...
Now processing: `jonson.ly'
Parsing...ERROR: Unbound variable: fis2
lilypond: error: LilyPond failed on input file jonson (exit status 2)
lilypond: warning: Running LilyPond failed. Rerun with --verbose for a
trace.
*

With --verbose, I get (among other things)

*

Backtrace:
In (/filepath)/jonson.ly:
   1: 0* [ly:export # ...
(/filepath)/jonson.ly:1:66: While evaluating arguments to ly:export in
expression (ly:export (make-span-event # START) fis2):
(/filepath)/jonson.ly:1:66: Unbound variable:fis2
lilypond: warning: `usr' failed (status 2) (ignored)
*

Any suggestions?

Thomas Dent

___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user
--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user


Re: Fwd: Re: error message when running ly2dvi

2002-06-16 Thread Jan Nieuwenhuizen

DEBORAH LOWREY <[EMAIL PROTECTED]> writes:

> I was previously using 1.4.12.jcn5 and upgraded to the
> experimental 1.5.60.jcn1. But I am still having the
> same problems (see inline text attached and error
> messages below). 
> So I decided to test out Coriolan which I was using as
> a working template for my Magic Flute (Ouverture) full
> score. I am getting the following messages (with both
> mine and Coriolan):

That's a good trick.  I've tried the Coriolan, and it seems that
you've found a bug, that occurs in 1.4.12, 1.4.14 and in 1.5.60 as
well.  We'll look into it.

Greetings,
Jan.

-- 
Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien   | http://www.lilypond.org


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Fwd: Re: error message when running ly2dvi

2002-06-16 Thread DEBORAH LOWREY

Dear Lilypond,

I was previously using 1.4.12.jcn5 and upgraded to the
experimental 1.5.60.jcn1. But I am still having the
same problems (see inline text attached and error
messages below). 
So I decided to test out Coriolan which I was using as
a working template for my Magic Flute (Ouverture) full
score. I am getting the following messages (with both
mine and Coriolan):

First I get a windows box error message:
 Lilypond has caused an error in CYGWIN1.DLL.
 Lilypond will now close.
 If you continue to experience problems,
 try restarting your computer.

I've tried warm and cold boots, but same error. After
I hit the window error close button, I get the
following error now:

programming error: No StaffSpacing wishes found
(Continuing; cross thumbs)
programming error: No StaffSpacing wishes found
(Continuing; cross thumbs)
programming error: No StaffSpacing wishes found
(Continuing; cross thumbs)
programming error: No StaffSpacing wishes found
(Continuing; cross thumbs)
programming error: No StaffSpacing wishes found
(Continuing; cross thumbs)
programming error: No StaffSpacing wishes found
(Continuing; cross thumbs)
programming error: No StaffSpacing wishes found
(Continuing; cross thumbs)
programming error: No StaffSpacing wishes found
(Continuing; cross thumbs)
[3][6][9][12][15][18][21][24][27][30][33][36][39][42][45][48][51][54][57][60][63
][66][69][72][75][78][81][84][87][90][93][96][99][102][105][108][111][114][117][
120][123][126][129][132][135][138][141][144][147][150][153][156][159][162][165][
168][171][174][177][180][183][186][189][192][195][198][201][204][207][210][213][
216][219][222][225][228][231][234][237][240][243][246][249][252][255][258][261][
264][267][270][273][276][279][282][285][288][291][294][297][300][303][306][309][
312][315]
warning: Could not find line breaking that satisfies
constraints.
paper output to `coriolan.tex'...
writing header field `title' to `coriolan.title'...
writing header field `subtitle' to
`coriolan.subtitle'...
writing header field `subsubtitle' to
`coriolan.subsubtitle'...
writing header field `footer' to `coriolan.footer'...
writing header field `composer' to
`coriolan.composer'...
writing header field `instrument' to
`coriolan.instrument'...
writing header field `opus' to `coriolan.opus'...
writing header field `piece' to `coriolan.piece'...
writing header field `instrument' to
`coriolan.instrument'...
programming error: Spanner `MultiMeasureRest' is not
fully contained in parent s
panner `HaraKiriVerticalGroup'. (Continuing; cross
thumbs)
programming error: Spanner `MultiMeasureRest' is not
fully contained in parent s
panner `HaraKiriVerticalGroup'. (Continuing; cross
thumbs)
Signal 127
warning: lilypond: command exited with value 65280
(ignored)
Analyzing coriolan.tex...
Running LaTeX...
error: latex: command exited with value 256
Traceback (most recent call last):
  File "/usr/lilypond-1.5.60.jcn1-1/bin/ly2dvi", line
928, in ?
run_latex (files, outbase, extra_init)
  File "/usr/lilypond-1.5.60.jcn1-1/bin/ly2dvi", line
670, in run_latex
quiet_system (cmd, 'LaTeX')
  File "/usr/lilypond-1.5.60.jcn1-1/bin/ly2dvi", line
442, in quiet_system
return system (cmd)
  File "/usr/lilypond-1.5.60.jcn1-1/bin/ly2dvi", line
247, in system
error (msg)
  File "/usr/lilypond-1.5.60.jcn1-1/bin/ly2dvi", line
144, in error
raise _ ("Exiting ... ")
Exiting ...
LATEX output to `coriolan.latex'...
TEX output to `coriolan.tex'...
Default@COMPUTER ~/coriolan-lys$

I used convert-ly first on Coriolan and removed the
";" in the header because they were causing fatal
errors, but everything else was as converted and
looked fine on visual inspection.
The only real difference between the Magic Flute and
the Coriolan was the raw data of notes.
I have Windows ME on a Compaq 5838 500Mhz Athlon with
lots of hard drive space.
Additional information from previous email below...

Any suggestions?

Thanks,

Deborah


--- Jan Nieuwenhuizen <[EMAIL PROTECTED]> wrote:
> To: DEBORAH LOWREY <[EMAIL PROTECTED]>
> CC: [EMAIL PROTECTED]
> Subject: Re: error message when running ly2dvi
> From: Jan Nieuwenhuizen <[EMAIL PROTECTED]>
> Date: Sat, 15 Jun 2002 11:53:24 +0200
> 
> DEBORAH LOWREY <[EMAIL PROTECTED]> writes:
> 
> > I've been working on the full orchestration of the
> > Magic Flute. Everything was going great until I
> got to
> > the violins. I was adding each instrument to the
> score
> > as I went and ran ly2dvi -P after each to help
> edit,
> > etc. But now I'm getting the error:
> >
> > `MagicFlute.instrument'...
> > Signal 127
> > error: lilypond: command exited with value 65280
> 
> It seems that LilyPond bombs ou

Re: error message when running ly2dvi

2002-06-15 Thread Jan Nieuwenhuizen

DEBORAH LOWREY <[EMAIL PROTECTED]> writes:

> I've been working on the full orchestration of the
> Magic Flute. Everything was going great until I got to
> the violins. I was adding each instrument to the score
> as I went and ran ly2dvi -P after each to help edit,
> etc. But now I'm getting the error:
>
> `MagicFlute.instrument'...
> Signal 127
> error: lilypond: command exited with value 65280

It seems that LilyPond bombs out.  Why, that's hard to tell without
access to the .ly's.

> problem). I have Windows ME and a Compaq 5838 with a
> 500Mhz Athlon with 256k ram.
>
> Any suggestions?

It would be helpful if you could post (or put on a website) the .ly's
that give the problem.  We'll have to find out where the problem is,
lilypond, lilypond for windows, guile for windows, some strange thing
when combining your .ly's, hardware problems.

If you can't post the .ly's, there's a more difficult route.  I could
make a lilypond version available that has debugging info, and you
could run lilypond under gdb (the debugger), so that we may see what's
wrong.

You could also try the newly available, but still experimental,
lilypond-1.5.60, and see if that works.  See

http://mail.gnu.org/pipermail/lilypond-devel/2002-June/001042.html

Greetings,
Jan.

-- 
Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien   | http://www.lilypond.org


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user