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 - 7cardcha

Pages: [1]
1
General / Re: Can't get even an example program to run
« on: August 14, 2012, 01:58:32 am »
With the same code here is the gdb debug.


C:\Users\Charles\Documents\SFML\bin\Release>gdb SFML.exe
GNU gdb (GDB) 7.4
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "i686-pc-mingw32".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from C:\Users\Charles\Documents\SFML\bin\Release\SFML.exe...(no
debugging symbols found)...done.
(gdb) run
Starting program: C:\Users\Charles\Documents\SFML\bin\Release\SFML.exe
[New Thread 4588.0x1704]

Program received signal SIGSEGV, Segmentation fault.
0x6630373e in sf::Clock::Clock() ()
   from C:\Users\Charles\Documents\SFML\bin\Release\sfml-system.dll
(gdb)

2
General / Re: Can't get even an example program to run
« on: August 13, 2012, 11:13:12 pm »
It takes like .7 seconds to crash. Doesn't matter if I run it in codeblocks or not. No compile warnings. I'll try some of your suggestions as soon as I have time. Thanks.

3
General / Can't get even an example program to run
« on: August 13, 2012, 09:00:31 pm »
I have codeblocks 10.05 and Windows 7 Home Premium 64bit.

I defined SFML_DYNAMIC and put

-lsfml-system
-lsfml-window
-lsfml-graphics
-lsfml-network
-lsfml-audio
-lopengl32
-lglu32

In the linker settings.


and added C:\Program Files (x86)\CodeBlocks\SFML\include to  Search directories -> compiler and added


C:\Program Files (x86)\CodeBlocks\SFML\lib to Search directories -> linker.


I then put all the dll's in the project folder and built and run this example.


#include <SFML/System.hpp>
#include <iostream>

int main()
{
    sf::Clock Clock;
    while (Clock.GetElapsedTime() < 5.f)
    {
        std::cout << Clock.GetElapsedTime() << std::endl;
        sf::Sleep(0.5f);
    }

    return 0;
}
 

All I get is program.exe has stopped working.

I searched this on google first.

Pages: [1]
anything