Created attachment 724081 [details, diff] patch to multilib wrap xmlversion.h If both ABI_X86="32 64" and python are enabled (and probably more combinations), the build fails due to header checksum mismatches between ABIs. The reason is ==== include/xmlversion.h.in ==== #if @WITH_MODULES@ #define LIBXML_MODULES_ENABLED /** * LIBXML_MODULE_EXTENSION: * * the string suffix used by dynamic modules (usually shared libraries) */ #define LIBXML_MODULE_EXTENSION "@MODULE_EXTENSION@" #endif ==== and the fix is to wrap the header, see attached patch against both '-r3' and '-r4'
Thanks!
(In reply to David Haller from comment #0) > Created attachment 724081 [details, diff] [details, diff] > patch to multilib wrap xmlversion.h > > If both ABI_X86="32 64" and python are enabled (and probably more > combinations), > the build fails due to header checksum mismatches between ABIs. The reason is > > ==== include/xmlversion.h.in ==== > #if @WITH_MODULES@ > #define LIBXML_MODULES_ENABLED > /** > * LIBXML_MODULE_EXTENSION: > * > * the string suffix used by dynamic modules (usually shared libraries) > */ > #define LIBXML_MODULE_EXTENSION "@MODULE_EXTENSION@" > #endif > ==== > > and the fix is to wrap the header, see attached patch against both '-r3' and > '-r4' Could you post the contents of the two differing files? Maybe even a diff or so? Given that we can't reproduce the bug, I'm wary of just wrapping something in MULTILIB_WRAPPED_HEADERS without understanding the root cause.