Re: dev build problem
"John W. Eaton" <[email protected]> Fri, 20 Aug 2021 17:00:07 -0400
| Newsgroups | gmane.comp.gnu.octave.maintainers |
|---|---|
| Message-ID | <[email protected]> |
On 8/16/21 2:45 PM, Markus M=C3=BCtzel wrote:
> Am 15. August 2021 um 16:08 Uhr schrieb "John W. Eaton":
>> Looking at the mxe-native* buildbot logs, I see some possible problems
>> with building packages. I'll take a closer look if those happen again
>> with the next round of builds.
>=20
> I also see that error when cross-compiling for Windows. Full log attach=
ed.
>=20
> Markus
>=20
Strange, I don't see this problem. But I'm also using GCC 10.
Assuming you are building with the latest Octave sources, can you try=20
changing
OCTAVE_DEPRECATED (7, "use 'octave::warning_enabled' instead")
inline OCTINTERP_API int warning_enabled (const std::string& id)
{
return octave::warning_enabled (id);
}
to
OCTAVE_DEPRECATED (7, "use 'octave::warning_enabled' instead")
inline int warning_enabled (const std::string& id)
{
return octave::warning_enabled (id);
}
in libinterperror.h? That inline function shouldn't have a visibility=20
attribute.
jwe