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

Author Topic: Procedure Entry Point Issue  (Read 1595 times)

0 Members and 1 Guest are viewing this topic.

Tylernocks

  • Newbie
  • *
  • Posts: 4
    • View Profile
    • Email
Procedure Entry Point Issue
« on: June 22, 2013, 10:04:39 am »
I am using SFML 2.0
I am also using Code::Blocks 12.11 MingGW

I was attempting to test the sample application from the tutorial pages

#include <SFML/Graphics.hpp>

int main()
{
    sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
    sf::CircleShape shape(100.f);
    shape.setFillColor(sf::Color::Green);

    while (window.isOpen())
    {
        sf::Event event;
        while (window.pollEvent(event))
        {
            if (event.type == sf::Event::Closed)
                window.close();
        }

        window.clear();
        window.draw(shape);
        window.display();
    }

    return 0;
}
 

error "The Procedure Entry Point_gxx_personality_v0 could not be located in the dynamic link library" then it said where my sfml-system-d-2.dll file was.

I came across while I attempted to build (tested both debug and release)


I added all of the required files to the output file
I rebuilt it
checked the compilers and I checked the linking

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10916
    • View Profile
    • development blog
    • Email
Re: Procedure Entry Point Issue
« Reply #1 on: June 22, 2013, 10:27:29 am »
Have you searched the forum, because someone just posted the same issue in another thread. ;)
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

Tylernocks

  • Newbie
  • *
  • Posts: 4
    • View Profile
    • Email
Re: Procedure Entry Point Issue
« Reply #2 on: June 22, 2013, 10:50:34 am »
:| I have been searching for that post for 5 hours and you recovered it in minutes, +100xp for you!!!

Edit: IT WORKED OH God "Big Sean Voice"
« Last Edit: June 22, 2013, 11:19:01 am by Tylernocks »

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10916
    • View Profile
    • development blog
    • Email
Re: Procedure Entry Point Issue
« Reply #3 on: June 22, 2013, 12:12:43 pm »
:| I have been searching for that post for 5 hours and you recovered it in minutes
Well I've run into the same issue several times in the past and also spent quite some time resolving it, thus I now can help others way faster. With time and failures comes experience. ;)
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/