"Thomas Morley" <[email protected]> writes:
> I just tried from:
>
> git checkout release/2.19.20-1
> [...]
> ../configure --disable-optimising
> make
>
> returning:
>
> [...]
> In file included from /home/hermann/lilypond-git/lily/include/smobs.hh:329:0,
> from /home/hermann/lilypond-git/lily/include/scm-hash.hh:23,
> from /home/hermann/lilypond-git/lily/scm-hash.cc:20:
> /home/hermann/lilypond-git/lily/include/smobs.tcc: In instantiation of
> 'static void Smob_base<Super>::init() [with Super = Scheme_hash_table]':
> /home/hermann/lilypond-git/lily/include/smobs.tcc:113:10: required from
> 'Scm_init Smob_base<Scheme_hash_table>::scm_init_'
> /home/hermann/lilypond-git/lily/include/smobs.hh:163:35: required from
> 'static scm_t_bits Smob_base<Super>::smob_tag() [with Super =
> Scheme_hash_table; scm_t_bits = long unsigned int]'
> /home/hermann/lilypond-git/lily/include/smobs.tcc:60:3: required from
> 'static scm_unused_struct* Smob_base<Super>::register_ptr(Super*) [with Super
> = Scheme_hash_table; SCM = scm_unused_struct*]'
> /home/hermann/lilypond-git/lily/include/smobs.hh:272:44: required from
> 'scm_unused_struct* Smob<Super>::unprotected_smobify_self() [with Super =
> Scheme_hash_table; SCM = scm_unused_struct*]'
> /home/hermann/lilypond-git/lily/include/smobs.hh:281:44: required from
> 'void Smob<Super>::smobify_self() [with Super = Scheme_hash_table]'
> /home/hermann/lilypond-git/lily/scm-hash.cc:48:17: required from here
> /home/hermann/lilypond-git/lily/include/smobs.tcc:151:37: error: invalid
> conversion from 'int' to 'const char*' [-fpermissive]
> SCM subr = scm_c_define_gsubr (Super::type_p_name_, 1, 0, 0,
> ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> (scm_t_subr) smob_p);
> ~~~~~~~~~~~~~~~~~~~~
> In file included from /usr/local/include/libguile.h:52:0,
> from
> /home/hermann/lilypond-git/lily/include/lily-guile.hh:27,
> from /home/hermann/lilypond-git/lily/include/smobs.hh:23,
> from /home/hermann/lilypond-git/lily/include/scm-hash.hh:23,
> from /home/hermann/lilypond-git/lily/scm-hash.cc:20:
> /usr/local/include/libguile/gsubr.h:47:13: note: initializing argument 1 of
> 'scm_unused_struct* scm_c_define_gsubr(const char*, int, int, int,
> scm_unused_struct* (*)())'
> SCM_API SCM scm_c_define_gsubr (const char *name,
> ^~~~~~~~~~~~~~~~~~
> In file included from /home/hermann/lilypond-git/lily/include/smobs.hh:329:0,
> from /home/hermann/lilypond-git/lily/include/scm-hash.hh:23,
> from /home/hermann/lilypond-git/lily/scm-hash.cc:20:
> /home/hermann/lilypond-git/lily/include/smobs.tcc:155:37: error: invalid
> initialization of reference of type 'const string& {aka const
> std::__cxx11::basic_string<char>&}' from expression of type 'const int'
> ly_add_function_documentation (subr, Super::type_p_name_, "(SCM x)",
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> fundoc);
> ~~~~~~~
> In file included from
> /home/hermann/lilypond-git/lily/include/lily-guile.hh:39:0,
> from /home/hermann/lilypond-git/lily/include/smobs.hh:23,
> from /home/hermann/lilypond-git/lily/include/scm-hash.hh:23,
> from /home/hermann/lilypond-git/lily/scm-hash.cc:20:
> /home/hermann/lilypond-git/lily/include/lily-guile-macros.hh:164:6: note: in
> passing argument 2 of 'void ly_add_function_documentation(SCM, const string&,
> const string&, const string&)'
> void ly_add_function_documentation (SCM proc, const string &fname, const
> string &varlist, const string &doc);
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> In file included from /home/hermann/lilypond-git/lily/include/smobs.hh:329:0,
> from /home/hermann/lilypond-git/lily/include/scm-hash.hh:23,
> from /home/hermann/lilypond-git/lily/scm-hash.cc:20:
> /home/hermann/lilypond-git/lily/include/smobs.tcc:157:20: error: invalid
> conversion from 'int' to 'const char*' [-fpermissive]
> scm_c_export (Super::type_p_name_, NULL);
> ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
> In file included from /usr/local/include/libguile.h:65:0,
> from
> /home/hermann/lilypond-git/lily/include/lily-guile.hh:27,
> from /home/hermann/lilypond-git/lily/include/smobs.hh:23,
> from /home/hermann/lilypond-git/lily/include/scm-hash.hh:23,
> from /home/hermann/lilypond-git/lily/scm-hash.cc:20:
> /usr/local/include/libguile/modules.h:90:14: note: initializing argument 1
> of 'void scm_c_export(const char*, ...)'
> SCM_API void scm_c_export (const char *name, ...);
> ^~~~~~~~~~~~
> /home/hermann/lilypond-git/stepmake/stepmake/c++-rules.make:4: recipe for
> target 'out/scm-hash.o' failed
> make[1]: *** [out/scm-hash.o] Error 1
> make[1]: Leaving directory '/home/hermann/lilypond-git/build/lily'
> /home/hermann/lilypond-git/stepmake/stepmake/generic-targets.make:6: recipe
> for target 'all' failed
> make: *** [all] Error 2
>
>
> Is this expected are did I something wrong?
Those lines have been subject to a few changes, partly triggered by
changes in standard and/or compiler.
Possibly the following is needed?
commit 67cd07e55d5ec908c246ae543e480d367b61d6b3
Author: David Kastrup <[email protected]>
Date: Fri Jun 3 14:21:55 2016 +0200
Issue 4878: Make type_p_name_ always char pointer
This avoids the pitfalls cured by issue 4783 without the
associated inconvenience when no predicate is desired.
And possibly this before it?
commit c6758d6d12e33779fc81218693d5650682d8a1ca
Author: David Kastrup <[email protected]>
Date: Thu Mar 3 00:32:33 2016 +0100
Remove Smob::type_p_name_ default
This was the single most problematic thing across C++ compilers and
standards.
Foregoing it means a hassle, but using it turned out to be worse.
--
David Kastrup
---
** [issues:#5651] Core dump: /lily/page-breaking.cc, Line 1052**
**Status:** New
**Labels:** Regression
**Created:** Sat Jan 04, 2020 01:39 PM UTC by pkx166h
**Last Updated:** Sat Jan 04, 2020 07:06 PM UTC
**Owner:** nobody
On 27/12/2019 19:19, [email protected] wrote:
> Code below works fine when run under windows in lilypond 2.18.2
> However when running in 2.19.83, or in 2.21.0 (version end November) an
> assertion is thrown:
>
> File:
> /home/jaap/gub/target/mingw/src/lilypond-git.sv.gnu.org--lilypond.git-master
> /lily/page-breaking.cc, Line 1052
> Expression: my_index == 0
>
~~~
\version "2.18.2"
\header {
title = "Title"
}
\relative fis' {
\pageBreak
r1 \break
r4 r4 r2
r2 r4 c4 \break
r1 \pageBreak
r1
}
~~~
---
Sent from sourceforge.net because [email protected] is
subscribed to https://sourceforge.net/p/testlilyissues/issues/
To unsubscribe from further messages, a project admin can change settings at
https://sourceforge.net/p/testlilyissues/admin/issues/options. Or, if this is
a mailing list, you can unsubscribe from the mailing list._______________________________________________
Testlilyissues-auto mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto