On 02/22/2010 08:52 PM, Jan Nieuwenhuizen wrote:
>
> Yes... it's always nice to have lily building with the latest and
> greatest - although I see that gcc-4.5.0 development currently has
> about 250 regressions, half of them serious ones.  I'm not sure
> if debugging this right now is helpful.
>
> I note that it builds and runs with gcc-4.5.0 from 20091018 - haven't
> verified if the doc builds.
>
> Greetings,
> Jan.
>
>
>   
I have no idea what went wrong with the lilypond build when it failed
with the original patch applied, I can only speculate that a dependency
was broken at exactly the right moment and caused me to spend a lot of
time searching for a non existent error. Lilypond is now building for
11.2 (gcc44) and factory standard (gcc45) with the attached patch which
is the one I posted previously.
Regards
Dave P
Index: lilypond-2.12.3/lily/spacing-spanner.cc
===================================================================
--- lilypond-2.12.3.orig/lily/spacing-spanner.cc
+++ lilypond-2.12.3/lily/spacing-spanner.cc
@@ -38,7 +38,7 @@ Spacing_spanner::get_columns (Grob *me_g
   vsize end = binary_search (all, (Grob*) me->get_bound (RIGHT),
 			     &Paper_column::less_than);  
   
-  all = vector<Grob*>::vector<Grob*> (all.begin () + start,
+  all = vector<Grob*> (all.begin () + start,
 				      all.begin () + end + 1);
   return all;
 }
_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to