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

Author Topic: libgcc_s_sjlj-1.dll was not found code blocks  (Read 1088 times)

0 Members and 1 Guest are viewing this topic.

Mycott

  • Newbie
  • *
  • Posts: 1
    • View Profile
libgcc_s_sjlj-1.dll was not found code blocks
« on: March 27, 2022, 11:35:08 am »
hi,im a rookie in SFML,i have a problem,when i try to run my program,windows gave me this errore "libgcc_s_sjlj-1.dll not found" and i dont know how to do,sorry for my bad english,but i am italian :'(
there the code:
#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;
}

sorry for the image in italian :'(
« Last Edit: March 27, 2022, 10:30:58 pm by eXpl0it3r »

Stauricus

  • Sr. Member
  • ****
  • Posts: 369
    • View Profile
    • A Mafia Graphic Novel
    • Email
Re: libgcc_s_sjlj-1.dll was not found code blocks
« Reply #1 on: March 27, 2022, 12:15:20 pm »
hello
how did you install SFML?
Visit my game site (and hopefully help funding it? )
Website | IndieDB