https://bugs.winehq.org/show_bug.cgi?id=49033
--- Comment #3 from Dominik Reichardt winehq-bugzilla@reichardt.de --- Thanks for looking into it. I don't see how and where this relocation would be set. It was created with mingw/msys64.
The files are https://github.com/exult/exult/blob/master/win32/exconfig.cc https://github.com/exult/exult/blob/master/win32/exconfig.h https://github.com/exult/exult/blob/master/win32/exconfig.rc https://github.com/exult/exult/blob/master/win32/exconfig.def
and in the makefile it is compiled with these rules: exconfig_rc.o: win32/exconfig.rc windres --include-dir win32 win32/exconfig.rc exconfig_rc.o
exconfig.dll: win32/exconfig.def $(FILE_OBJS) $(CONF_OBJS) exconfig_rc.o win32/exconfig.o dllwrap --def win32/exconfig.def -o $@ $(FILE_OBJS) $(CONF_OBJS) exconfig_rc.o win32/exconfig.o -static -lstdc++