15 Jun
2016
15 Jun
'16
6:21 a.m.
On 14 Jun 2016, at 18:23, Robert Ramey
wrote: The fact that gcc passes on my system and fails on the test matrix might suggest that a bug or breaking change has been checked into the develop branch which is not being caught by some test.
Are you actually using mingw or just gcc on a different platform? I’m not sure they can be treated automatically the same after you leave the compilation stage since mingw has to deal with the intricacies of Windows. For your actual problem: the __imp__ prefix means that the linker expects the function to live in a DLL but it’s actually in the lib itself (without the __imp__, using objdump). Might be a problem with BOOST_DLLEXPORT or some build settings. Thomas