After a few years of successfully using SFML for designing flight simulator instruments I changed my computer and updated all software to the latest version. Trying to continue with SFML gave me a lot of linker errors. To find out what the cause of the errors is I then tried the example from the beginner’s tutorial (source code exactly copied) which should result in showing a green circle. I got the following two error messages:
LNK2019 unresolved external symbol "___std_swap_ranges_trivially_swappable_noalias"
LNK1120 1 unresolved external
Some data of my system: Windows 10 with Visual Studio 2017 (including all updates) with platform toolset v140 (the one from VS 2015), SFML 2.5.0 for VS 2015
I found a few threats on the forum describing a similar problem:
https://en.sfml-dev.org/forums/index.php?topic=24076.0However, I must admit I do not understand the proposed solution because of my limited programming experience. What should I change in my green-circle-test-project to make it run?
Thanks for helping.