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

Author Topic: Process terminated with status -1073741819  (Read 5416 times)

0 Members and 1 Guest are viewing this topic.

game_maker

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
    • Email
Process terminated with status -1073741819
« on: December 24, 2012, 07:57:34 pm »
Hi! After some time, I am trying to use SFML again. But I am using Code::Blocks 12.11 instead of Visual C++ Express Edition.

I used this code:

#include <SFML/Graphics.hpp>
int main()
{
    sf::RenderWindow window( sf::VideoMode(200, 200), "Title");

    return 0;
}

The game crashes... and the "Build Log" shows: "Process terminated with status -1073741819"

Some info:

Build options:

Link libraries:

sfml-graphics-s
sfml-window-s
sfml-system-s

Search directories:

Compiler
D:\SFML\include

Linker
D:\SFML\lib

#defines

SFML_STATIC

Quote
Windows 7 - 32 bits, AMD 1 GHz, RAM: 4 GB.

Thanks

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10823
    • View Profile
    • development blog
    • Email
Re: Process terminated with status -1073741819
« Reply #1 on: December 25, 2012, 12:15:56 am »
And what version of SFML are you using, or better where did you get it from?
If you've grabbed the RC binaries on the official download page, then it doesn't work and you'll have to build SFML on your own.
Also make sure you don't mix debug (libraries with -d suffix) and release (libraries without -d suffix) modes.
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

LAPB

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: Process terminated with status -1073741819
« Reply #2 on: December 28, 2012, 04:00:26 pm »
Same problem im using version 1.6 that i got from the download part that says
C++ | version 1.6
SFML Full SDK
Windows MinGW (Code::Blocks)

EDIT: as common building from source fixes this kind of issues
« Last Edit: December 28, 2012, 05:54:18 pm by LAPB »

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10823
    • View Profile
    • development blog
    • Email
Re: Process terminated with status -1073741819
« Reply #3 on: December 28, 2012, 08:10:16 pm »
Same problem im using version 1.6 that i got from the download part that says
C++ | version 1.6
SFML Full SDK
Windows MinGW (Code::Blocks)
Unfortunately there's not date written next to the link, otherwise people would probably think about getting something newer and better, because SFML 1.6 has received the last commit on 18th July 2010, which is well around 2.5 years ago, while in the meantime GCC has advanced quite a few version numbers, one could only imagine how outdated the builds are.

Thus I strongly advise you to use SFML 2 and for C::B 12.11 you'll have to recompile SFML.
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

game_maker

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
    • Email
Re: Process terminated with status -1073741819
« Reply #4 on: January 18, 2013, 06:37:05 pm »
Hi! I am using SFML 2.0 (SJLJ) with Code::Blocks.

The error message:

Process terminated with status -1073741510 (0 minutes, 4 seconds)

game_maker

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
    • Email
Re: Process terminated with status -1073741819
« Reply #5 on: January 18, 2013, 08:18:23 pm »
Can anyone recompile the SFML for me? I am using C::B 12.11.
I can't recompile...

Thanks!

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10823
    • View Profile
    • development blog
    • Email
Re: Process terminated with status -1073741819
« Reply #6 on: January 18, 2013, 09:04:26 pm »
What MinGW version are you using? Note: C::B is not a compiler, it' an IDE.
I've compiled SFML  for three different MinGW versions.
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

game_maker

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
    • Email
Re: Process terminated with status -1073741819
« Reply #7 on: January 18, 2013, 10:45:52 pm »
I compiled SFML with Cmake+mingw32-make. Now this works! Thanks!