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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - fakepotato

Pages: 1 2 [3]
31
General / Re: The program exiting with code -1073741515
« on: September 30, 2014, 11:11:40 pm »
Yup, tried to cmake it twice. Same exiting code.
Btw, if i remove the IDE with maintenance tool, that means i delete the compiler mingw from system too? Cuz the guy above said that this exiting code means i have double mingw installation. So i ll try reinstalling qtcreator  :-X

32
General / Re: The program exiting with code -1073741515
« on: September 30, 2014, 10:31:14 pm »
4.8.2 mingw is compatible with sfml? Cuz i am trying to get 4.7.0 to make it work.
Maybe i am doing extra motions?

33
General / Re: The program exiting with code -1073741515
« on: September 30, 2014, 09:56:00 pm »
Used this guide.
Can't understand 6 step. Don't have any of C:\QtSDK\mingw\bin;C:\qtsdk\qt\bin; or similar to them in any path
Now i am reinstalling the QT and wanna try to do everything accordingly to this guide once more

34
General / Re: The program exiting with code -1073741515
« on: September 30, 2014, 09:24:45 pm »
I know QTcreator is only IDE.
Still i am too stupid to make it work in QTcreator. Damnit, tried everything.

35
General / Re: The program exiting with code -1073741515
« on: September 30, 2014, 09:14:20 pm »
Btw, does anybody work with SFML in QTcreator? I have heard it works awkwardly with qtcreator.

36
General / Re: The program exiting with code -1073741515
« on: September 30, 2014, 09:06:17 pm »
Tried reading this?

Looks like you may have a "double MinGW installation". Try properly removing the old one (the one before you installed qt).

This information was found by googling "exited with code -1073741515"  >:(
I have 4.8.2 that came with installed QTcreator, and second one installed manually(4.7.0)
But had this problem even with only one mingw.

37
General / Re: The program exiting with code -1073741515
« on: September 30, 2014, 07:12:15 pm »
What's the problem?

That code creates a window and destroys it immediately. Have a look at the tutorials to learn how to keep a SFML window open.
You mean, there's no problem?
Found this code on the wiki
#include <SFML/Graphics.hpp>

using namespace std;

int main()
{
    // Create the main window
    sf::RenderWindow App(sf::VideoMode(800, 600, 32), "Hello World - SFML");

    // Start the main loop
    while (App.isOpen())
    {
        // Process events
        sf::Event Event;
        while (App.pollEvent(Event))
        {
            // Close window : exit
            if (Event.type == sf::Event::Closed)
                App.close();
        }
        // Clear screen, and fill it with blue
        App.clear(sf::Color::Blue);

        // Display the content of the window on screen
        App.display();
    }
    return 0;
}
 
The same exit with code.
You still think it's code trouble?

38
General / Re: The program exiting with code -1073741515
« on: September 30, 2014, 06:49:14 pm »

39
General / The program exiting with code -1073741515
« on: September 30, 2014, 06:42:06 pm »
I have the trouble. My OS is windows7 x64, trying to get my SFML WD (for gcc 4.7.0) working
But it doesn't. Simple code
#include <iostream>
#include <conio.h>
#include <SFML/Graphics.hpp>
using namespace std;

int main()
{

 sf::RenderWindow App(sf::VideoMode(800, 600, 32), "Hello World - SFML");
    return 0;
}
 

And
Project1\build-untitled-Desktop_Qt_5_3_MinGW_32bit-Debug\debug\untitled.exe exited with code -1073741515

What's wrong? Can show my .pro file too.
TEMPLATE = app
CONFIG -= app_bundle
CONFIG -= qt

SOURCES += main.cpp

include(deployment.pri)
qtcAddDeployment()

#SFML library
LIBS += -LD:\QTcreator\Tools\SFML-2.1\lib
 
CONFIG(release, debug|release): LIBS += -lsfml-audio -lsfml-graphics -lsfml-main -lsfml-network -lsfml-window -lsfml-system -DSFML_STATIC
CONFIG(debug, debug|release): LIBS += -lsfml-audio-d -lsfml-graphics-d -lsfml-main-d -lsfml-network-d -lsfml-window-d -lsfml-system-d -DSFML_STATIC
 
INCLUDEPATH += D:\QTcreator\Tools\SFML-2.1\include
DEPENDPATH += D:\QTcreator\Tools\SFML-2.1\include
Can anyone help me?

Pages: 1 2 [3]