On 2018/01/15 10:42, Florian Viehweger wrote: > > There's some bug with mpd on i386, others have run into it too. > > It's not a config problem, same with very simple configs. > > Thank you. Do you have any pointers? A quick search in their (mpd) > GitHub repo and on marc.info revealed no new information.
Not specifically. There has been a problem with c++ exception handling and pure/const before (https://github.com/MusicPlayerDaemon/MPD/issues/41) so my first hunch would be to try with these (in src/Compiler.h) changed.. #define gcc_pure __attribute__((pure)) #define gcc_const __attribute__((const)) just define them to nothing i.e. #define gcc_pure #define gcc_const
