Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Entry Point Not Found  (Read 5507 times)

0 Members and 1 Guest are viewing this topic.

Proclivitas

  • Newbie
  • *
  • Posts: 1
    • View Profile
Entry Point Not Found
« on: October 24, 2013, 09:36:33 am »
Running through the walkthrough @ http://www.sfml-dev.org/tutorials/2.1/start-cb.php
Trying to run the example program and I get the error:

The procedure entry point __gxx_personality_v0 could not be located in
the dynamic link library libstdc++-6.dll

I have moved the dlls from the SMFL\bin to my complied .exe folder.

slotdev

  • Sr. Member
  • ****
  • Posts: 385
    • View Profile
Re: Entry Point Not Found
« Reply #1 on: October 24, 2013, 10:32:40 am »
Can you provide us more information about your environment? What PC, compiler, IDE, etc....and did you rebuild SFML from the source or download binaries?
SFML 2.1

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10845
    • View Profile
    • development blog
    • Email
Re: Entry Point Not Found
« Reply #2 on: October 24, 2013, 10:54:50 am »
The procedure entry point __gxx_personality_v0 could not be located in
the dynamic link library libstdc++-6.dll
This error usually occurs when you're mixing different versions of runtime libs, that is different version of SFML. Make sure the binaries of SFML were compiled with the same compiler as you're running.
If you're using C::B default compiler, you'll need the TDM SJLJ package.
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

 

anything