Getting SFML to work in Dev-c++ :/
Moderator: Coders of Rage
- StoveBacon
- Chaos Rift Cool Newbie
- Posts: 98
- Joined: Mon Sep 20, 2010 6:09 pm
- Favorite Gaming Platforms: PC Xbox360 SNES N64
- Programming Language of Choice: c++
Getting SFML to work in Dev-c++ :/
Hey i'm having trouble getting SFML working in Dev-c++.
I followed http://www.sfml-dev.org/tutorials/1.6/start-cb.php that tutorial and I get no errors but the window just flashes and closes right after I compile it.
If I run the exe it says that i'm missing the sfml-graphics.dll, and when I put sfml-graphics.dll into the same folder and run it again I get libgcc_s_dw2-1.dll was not found. I checked my compiler setting and I have it set to get the library files from my lib folder witch has all the sfml-graphics.dll. can someone help please?
thanks.
I followed http://www.sfml-dev.org/tutorials/1.6/start-cb.php that tutorial and I get no errors but the window just flashes and closes right after I compile it.
If I run the exe it says that i'm missing the sfml-graphics.dll, and when I put sfml-graphics.dll into the same folder and run it again I get libgcc_s_dw2-1.dll was not found. I checked my compiler setting and I have it set to get the library files from my lib folder witch has all the sfml-graphics.dll. can someone help please?
thanks.
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."
- epicasian
- Chaos Rift Junior
- Posts: 232
- Joined: Mon Feb 22, 2010 10:32 pm
- Current Project: Gigazilla Engine
- Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
- Programming Language of Choice: C/++
- Location: WoFo, KY
Re: Getting SFML to work in Dev-c++ :/
Have you tried linking statically instead of dynamically?
- StoveBacon
- Chaos Rift Cool Newbie
- Posts: 98
- Joined: Mon Sep 20, 2010 6:09 pm
- Favorite Gaming Platforms: PC Xbox360 SNES N64
- Programming Language of Choice: c++
Re: Getting SFML to work in Dev-c++ :/
Hate to sound stupid, but how do you do that.
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."
- epicasian
- Chaos Rift Junior
- Posts: 232
- Joined: Mon Feb 22, 2010 10:32 pm
- Current Project: Gigazilla Engine
- Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
- Programming Language of Choice: C/++
- Location: WoFo, KY
Re: Getting SFML to work in Dev-c++ :/
Instead of linking to something like "sfml-system-d.lib" link to "sfml-system-s-d.lib". And don't worry dude, we all have a noobie past:DKeithStoffel wrote:Hate to sound stupid, but how do you do that.
- StoveBacon
- Chaos Rift Cool Newbie
- Posts: 98
- Joined: Mon Sep 20, 2010 6:09 pm
- Favorite Gaming Platforms: PC Xbox360 SNES N64
- Programming Language of Choice: c++
Re: Getting SFML to work in Dev-c++ :/
1. i originally had it only link -lsfml-system but changing to to -lsfml-system-s-d didnt help.
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."
- epicasian
- Chaos Rift Junior
- Posts: 232
- Joined: Mon Feb 22, 2010 10:32 pm
- Current Project: Gigazilla Engine
- Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
- Programming Language of Choice: C/++
- Location: WoFo, KY
Re: Getting SFML to work in Dev-c++ :/
Is this the first time you've setup an IDE? Because I googled the DLL error you originally posted, and it said that's caused by GCC not being setup properly. (or something along those lines).
<preference>
The Dev-C++ project has been abandoned, and the last version I used had A TON of bugs that literally stopped me from doing anything productive. I suggest you switch to Code::Blocks or, if you're on Windows, Visual Studio Express.
</preference>
<preference>
The Dev-C++ project has been abandoned, and the last version I used had A TON of bugs that literally stopped me from doing anything productive. I suggest you switch to Code::Blocks or, if you're on Windows, Visual Studio Express.
</preference>
- StoveBacon
- Chaos Rift Cool Newbie
- Posts: 98
- Joined: Mon Sep 20, 2010 6:09 pm
- Favorite Gaming Platforms: PC Xbox360 SNES N64
- Programming Language of Choice: c++
Re: Getting SFML to work in Dev-c++ :/
I set up Dev a long time ago and I've never had problems with SDL or Allegro. But i guess it's time to move on.
Visual Studio Express here I come!
EDIT: 2008 or 2010?
Visual Studio Express here I come!
EDIT: 2008 or 2010?
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."
- epicasian
- Chaos Rift Junior
- Posts: 232
- Joined: Mon Feb 22, 2010 10:32 pm
- Current Project: Gigazilla Engine
- Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
- Programming Language of Choice: C/++
- Location: WoFo, KY
Re: Getting SFML to work in Dev-c++ :/
Well, the IntelliSense in VS2010 works a lot better than in 2008. 2010 is a bit slower loading up. Also, for 2010, you would have to compile SFML yourself, but if you want 2010, I can give you my builds of the SFML *.libs.
- StoveBacon
- Chaos Rift Cool Newbie
- Posts: 98
- Joined: Mon Sep 20, 2010 6:09 pm
- Favorite Gaming Platforms: PC Xbox360 SNES N64
- Programming Language of Choice: c++
Re: Getting SFML to work in Dev-c++ :/
well, I've gotten vc++ installed and i can get the first program that uses the sf::clock working but when i try using render windows Just get some errors :/
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."
- epicasian
- Chaos Rift Junior
- Posts: 232
- Joined: Mon Feb 22, 2010 10:32 pm
- Current Project: Gigazilla Engine
- Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
- Programming Language of Choice: C/++
- Location: WoFo, KY
Re: Getting SFML to work in Dev-c++ :/
Such as? I need more info to help:D
- StoveBacon
- Chaos Rift Cool Newbie
- Posts: 98
- Joined: Mon Sep 20, 2010 6:09 pm
- Favorite Gaming Platforms: PC Xbox360 SNES N64
- Programming Language of Choice: c++
Re: Getting SFML to work in Dev-c++ :/
error LNK2019: unresolved external symbol "public: void __thiscall sf::Window::Display(void)" (?Display@Window@sf@@QAEXXZ) referenced in function _main
i basically get that error for every SFML function thats called
i basically get that error for every SFML function thats called
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."
- epicasian
- Chaos Rift Junior
- Posts: 232
- Joined: Mon Feb 22, 2010 10:32 pm
- Current Project: Gigazilla Engine
- Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
- Programming Language of Choice: C/++
- Location: WoFo, KY
Re: Getting SFML to work in Dev-c++ :/
Are you linking to sfml-window.lib ? 

- StoveBacon
- Chaos Rift Cool Newbie
- Posts: 98
- Joined: Mon Sep 20, 2010 6:09 pm
- Favorite Gaming Platforms: PC Xbox360 SNES N64
- Programming Language of Choice: c++
Re: Getting SFML to work in Dev-c++ :/
sfml-system.lib and sfml-graphics.lib...
ok i added sfml-window.lib and i went from 6 to this one error:
general error c101008a: Failed to save the updated manifest to the file ".\Debug\SFMLtest2.exe.embed.manifest". The parameter is incorrect.
and if i just try to straight up run it i get "sfml-window.lib can not be found"
ok i added sfml-window.lib and i went from 6 to this one error:
general error c101008a: Failed to save the updated manifest to the file ".\Debug\SFMLtest2.exe.embed.manifest". The parameter is incorrect.
and if i just try to straight up run it i get "sfml-window.lib can not be found"
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."
- epicasian
- Chaos Rift Junior
- Posts: 232
- Joined: Mon Feb 22, 2010 10:32 pm
- Current Project: Gigazilla Engine
- Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
- Programming Language of Choice: C/++
- Location: WoFo, KY
Re: Getting SFML to work in Dev-c++ :/
Hm. Are you using VS2008? Is the link order like this: "system, window, graphics" ?
- StoveBacon
- Chaos Rift Cool Newbie
- Posts: 98
- Joined: Mon Sep 20, 2010 6:09 pm
- Favorite Gaming Platforms: PC Xbox360 SNES N64
- Programming Language of Choice: c++
Re: Getting SFML to work in Dev-c++ :/
VC2008, system, window, graphics.
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."