SFML community forums

General => General discussions => Topic started by: 8Observer8 on February 06, 2023, 03:48:58 pm

Title: libsfml-system-s: undefined reference to std::basic_streambuffer::seek_pos
Post by: 8Observer8 on February 06, 2023, 03:48:58 pm
Hello,

I used MinGW 8.1.0 64bit to build SFML. This works on my computer. But I sent the source code + libs (https://dl.dropboxusercontent.com/s/u5660u8n91woist/box2d-fmod-sfml.zip - 10 MB) to the person who tried to build and got an error (see screenshot). Either are included in the archive. You can download it and type "mingw32-make" into CMD. Please try and report any bugs or successful build of the example.

(https://en.sfml-dev.org/forums/index.php?action=dlattach;topic=28884.0;attach=5706)
Title: Re: libsfml-system-s: undefined reference to std::basic_streambuffer::seek_pos
Post by: eXpl0it3r on February 06, 2023, 03:59:28 pm
They are probably using a different compile than the one you're using with a different runtime, which then causes these mismatches.

If you want to work on the project together and shared binary files, then make sure to use the exact same compiler.
Title: Re: libsfml-system-s: undefined reference to std::basic_streambuffer::seek_pos
Post by: 8Observer8 on February 06, 2023, 05:33:25 pm
Thank you very much!