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.


Topics - Soul

Pages: [1] 2
1
Network / nonblocking sockets
« on: May 31, 2014, 04:45:38 pm »
Hey, i should use nonblocking sockets in my game to make her real-time, and my question, can i use selectors to make server multiclient? or better way is multithread with nonblocking sockets?

2
Network / receive timeout don't work
« on: May 29, 2014, 05:45:48 pm »
Hey, i have this code, and i don't know why timeout don't work...
void Server::update()  /// stupid sending packets...
{
    for( std::vector<Client*>::iterator it = clients.begin(); it!= clients.end(); ++it )
    {
        Client &client = **it;
        if (Selector.wait(sf::milliseconds(500)))
        {
            if(Selector.isReady(client.Socket))
            {
                if ( client.Recv(50) )
                {
                 ...
                }
                else                    /// This line never do...
                SendMapInfo();
            }
        }
    }
}

bool Client::Recv(float t)
{
    send.clear();
    recv.clear();
    sf::SocketSelector selector;
    selector.add(Socket);
    if( selector.wait(sf::milliseconds(t)))
    {
        if(Socket.receive(recv)== sf::Socket::Done)
        {
            recv >> family >> action;
            return true;
        }
        else return false;
    }
    else return false;
}
 

3
Network / player info sending
« on: May 27, 2014, 05:26:12 pm »
Hey, i have problem with my loop to sending player info to other clients, when 2 players are connecter everything work okey, but when third connect, to the third player is sending too much packets with players info..., i can't see what's wrong with my loop : o, any ideas?
void Server::SendMapInfo()
{
    for( std::list<Client*>::iterator it = clients.begin(); it!= clients.end(); ++it )
    {
        Client &client = **it;
        if(inGameClients.size()>1)
        {
            for( std::list<Client*>::iterator itt = inGameClients.begin(); itt!= inGameClients.end(); ++itt )
            {
                Client &temp = **itt;
                if(temp.ClientID!=client.ClientID&&client.inGame==true&&temp.inGame==true)
                {
                    //if(temp.Char.X/maps[client.Char.MapID]->tilesize<(client.Char.X/maps[client.Char.MapID]->tilesize-8)
                        // || temp.Char.X/maps[client.Char.MapID]->tilesize>(client.Char.X/maps[client.Char.MapID]->tilesize+8) )
                    //  {
                    //    if(temp.Char.Y/maps[client.Char.MapID]->tilesize<(client.Char.Y/maps[client.Char.MapID]->tilesize-8)
                        //  || temp.Char.Y/maps[client.Char.MapID]->tilesize>(client.Char.Y/maps[client.Char.MapID]->tilesize+8) )
                        //{
                            client.family=Packet::PACKET_WORLD;
                            client.action=Packet::PACKET_REQUEST;
                            client.send<<client.family<<client.action<<temp.Char.Name<<temp.ClientID<<temp.Char.X<<temp.Char.Y;
                            client.Send();
                            std::string str;
                            str=std::to_string(temp.ClientID);
                            str+=" ";
                            str+=temp.Char.Name;
                            str+=" ";
                            str+=std::to_string(temp.Char.X);
                            str+= " ";
                            str+=std::to_string(temp.Char.Y);
                            client.SMsg(str.c_str());
                        // }
                    // }
                }
            }
        }
    }
}

4
Network / server does not recv packets
« on: May 27, 2014, 08:04:27 am »
Hey, when to my server connect first client everything work fine, but then i want connect other clients server stop receiving packets from other clients. I use tcp sockets with blocking mode and timeout use, what's wrong? : /
bool Client::Recv()
{
    sf::Socket::Status status = Socket.receive( recv );
    if ( status == sf::Socket::Done ) { recv >> family >> action; return true; }
    else return false;
}

bool Client::Recv(float t)
{
    send.clear();
    recv.clear();
    sf::SocketSelector selector;
    selector.add(Socket);
    if( selector.wait(sf::milliseconds(t)))
    {
        if(Socket.receive(recv)== sf::Socket::Done)
        {
            recv >> family >> action;
            return true;
        }
        else return false;
    }
    else return false;
}
 

void Server::update()  /// stupid sending packets...
{
    for( std::list<Client*>::iterator it = clients.begin(); it!= clients.end(); ++it )
    {
        Client &client = **it;
        if(Selector.wait(sf::milliseconds(50)))
        {
            if ( client.Recv(0.3) )
            {
        ///        std::cout<<Packet::GetFamilyName(client.family)<< " "<<Packet::GetActionName(client.action)<<std::endl;
         ///       std::cout<<client.family<< " "<<client.action<<std::endl;
                if( client.family == Packet::PACKET_A_INIT )
                {
                    if( client.action == Packet::PACKET_REQUEST )  /// connection initialize
                    {
                        client.InitA();
                    }
                    else    /// error in init1
                    {
                        Selector.remove( client.Socket );
                        clients.erase(it);
                        --it;
                    }
                }
                else if( client.family == Packet::PACKET_B_INIT )
                {
                    if( client.action == Packet::PACKET_REQUEST )
                    {
                        client.InitB();
                    }
                    else   /// as above but with init2
                    {
                        Selector.remove( client.Socket );
                    clients.erase(it);
                    --it;
                    }
                }
                else if( client.family == Packet::PACKET_ACCOUNT && client.action == Packet::PACKET_REQUEST)
                {
                    if(client.CreateAccount())
                    {
                    }
                }
                else if( client.family == Packet::PACKET_LOGIN && client.action == Packet::PACKET_REQUEST )
                {
                    client.Login();
                }
                else if( client.family == Packet::PACKET_CHARACTER && client.action == Packet::PACKET_CREATE )
                {
                    client.CreateCharacter();
                }
                else if( client.family == Packet::PACKET_CHARACTER && client.action == Packet::PACKET_REQUEST )
                {
                    client.LoginChar();
                }
                else if( client.family==Packet::PACKET_MOVE && client.action==Packet::PACKET_REQUEST )
                {
                    client.RMsg();
                    client.Move(maps[client.Char.MapID]);
                }
                else if( client.family == Packet::PACKET_DISCONNECT && client.action==Packet::PACKET_REQUEST ) /// disconnecting xD
                {
                    if( client.Disconnect() )
                    {
                        Selector.remove( client.Socket );
                        clients.erase(it);
                        --it;
                    }
                }
            }
//            else if(client.inGame)
  //          {
                //SendMapInfo();
    //        }
        }
    }
}
 
@solved
i change in update selector.wait to selector.isReady and now work with small bugs :v

5
General / strange problem
« on: May 13, 2014, 12:27:54 pm »
Hey, i have problem with my map editor, i don't know why, but when i add one more object from tgui, sfml and type higher than char my app crash, only in menu class, why?, when i debug everything work fine, but when i want run exe it crash...

that print console
Quote
Process returned -1073741676 (0xC0000094)   execution time : 2.281 s
Press any key to continue.

6
General / app crash with vector2i in for()
« on: May 11, 2014, 04:39:25 pm »
Hey, i have this code
it work fine
void Map::Draw( sf::RenderWindow &wnd)
{
    if(isDraw)
    {
        for(int i=0; i<TileList.size();i++)
        {
            for(int j=0; j<TileList[i].size();j++)
            {
                if(TileList[i][j]->SpriteX==-1&&TileList[i][j]->SpriteY==-1)
                {
                    rect.setPosition( (TileList[i][j]->X*tilesize)+(Pos.x*tilesize), (TileList[i][j]->Y*tilesize)+(Pos.y*tilesize));
                    wnd.draw(rect);
                }
                else
                {
                    TileSet.setPosition( (TileList[i][j]->X*tilesize)+(Pos.x*tilesize), (TileList[i][j]->Y*tilesize)+(Pos.y*tilesize));
                    TileSet.setTextureRect( sf::IntRect(TileList[i][j]->SpriteX*tilesize, TileList[i][j]->SpriteY*tilesize,tilesize, tilesize) );
                    wnd.draw(TileSet);
                }
            }
        }
    }
}


but when i do something like this, the app will crash, why?
void Map::Draw( sf::RenderWindow &wnd)
{
    if(isDraw)
    {
        for(int i=0; i<Pos.x+10;i++)
        {
            for(int j=0; j<Pos.y+10;j++)
            {
                if(TileList[i][j]->SpriteX==-1&&TileList[i][j]->SpriteY==-1)
                {
                    rect.setPosition( (TileList[i][j]->X*tilesize)+(Pos.x*tilesize), (TileList[i][j]->Y*tilesize)+(Pos.y*tilesize));
                    wnd.draw(rect);
                }
                else
                {
                    TileSet.setPosition( (TileList[i][j]->X*tilesize)+(Pos.x*tilesize), (TileList[i][j]->Y*tilesize)+(Pos.y*tilesize));
                    TileSet.setTextureRect( sf::IntRect(TileList[i][j]->SpriteX*tilesize, TileList[i][j]->SpriteY*tilesize,tilesize, tilesize) );
                    wnd.draw(TileSet);
                }
            }
        }
    }
}

7
Window / problem with unactive window and events
« on: May 03, 2014, 04:13:10 pm »
Hey, i have a problem with renderwindow and events, when my mouse is outside window, this window capture mouse position and keyboard events, how can i disable that functions?

8
General / [SOLVED]tgui how create childwindow/panel
« on: April 07, 2013, 02:52:23 pm »
hey, i don't know how create and use childwindow in tgui 0.6 with sf::RenderWindow
anyone can show me simple example?
thanks : )

9
General / [SOLVED]tgui 6.0 editbox don't work
« on: April 06, 2013, 11:42:20 pm »
hey, i have a little problem with editbox it doesn't work...
when i compile sample project it work, but in my game not...
what is wrong?

#include "include/Client.h"
#include <TGUI/TGUI.hpp>
int main()
{
    Client client;
    sf::RenderWindow window(sf::VideoMode(800, 600), "Client");
    tgui::Form Menu( window );
    tgui::Form Create( window );
    Menu.setGlobalFont( "Font/djvs.ttf");
    Create.setGlobalFont( "Font/djvs.ttf");
    tgui::Button::Ptr connect(Menu);
    tgui::Button::Ptr disconnect(Menu);
    tgui::Button::Ptr createaccount(Menu);
    tgui::Button::Ptr create(Create);
    tgui::Label::Ptr labelUsername(Create);
    labelUsername->setText("Username:");
    labelUsername->setPosition(200, 100);
    tgui::Label::Ptr labelPassword(Create);
    labelPassword->setText("Password:");
    labelPassword->setPosition(200, 250);
    tgui::Label::Ptr labelMail(Create);
    labelMail->setText("E-Mail:");
    labelMail->setPosition(200, 400);
    tgui::EditBox::Ptr editBoxUsername(Create, "Username");
    editBoxUsername->load("gui/EditBox/Black");
    editBoxUsername->setSize(400, 40);
    editBoxUsername->setPosition(200, 140);
    tgui::EditBox::Ptr editBoxPassword = Create.copy(editBoxUsername, "Password");
    editBoxPassword->setPosition(200, 290);
    editBoxPassword->setSize(400, 40);
    editBoxPassword->setPasswordChar('*');
    tgui::EditBox::Ptr editBoxMail(Create, "E-Mail");
    editBoxMail->load("gui/Editbox/Black");
    editBoxMail->setSize(400,40);
    editBoxMail->setPosition(200, 440);

    createaccount->load("gui/Button/Black");
    createaccount->setSize(260, 60);
    createaccount->setPosition(270, 280);
    createaccount->setText("Create Account");
    createaccount->bindCallback(tgui::Button::LeftMouseClicked);
    createaccount->setCallbackId(1);
    connect->load("gui/Button/Black");
    connect->setSize(260, 60);
    connect->setPosition(270, 340);
    connect->setText("Connect");
    connect->bindCallback(tgui::Button::LeftMouseClicked);
    connect->setCallbackId(2);
    disconnect->load("gui/Button/Black");
    disconnect->setSize(260, 60);
    disconnect->setPosition(270, 400);
    disconnect->setText("Disconnect");
    disconnect->bindCallback(tgui::Button::LeftMouseClicked);
    disconnect->setCallbackId(3);
    create->load("gui/Button/Black");
    create->setSize(260, 60);
    create->setPosition(270, 700);
    create->setText("Create Account");
    create->bindCallback(tgui::Button::LeftMouseClicked);
    create->setCallbackId(1);
    int menu = 2;
    while (window.isOpen())
    {
        sf::Event event;
        while (window.pollEvent(event))
        {
            if (event.type == sf::Event::Closed)
                window.close();

            Menu.handleEvent(event);
        }

        tgui::Callback callback;
        switch( menu)
        {
            case 1:
            {
                while( Create.pollCallback(callback))
                {
                    switch( callback.callbackId)
                    {
                        case 1:
                        {
                            editBoxUsername = Create.get("Username");
                            editBoxPassword = Create.get("Password");
                            editBoxMail = Create.get("E-Mail");
                            sf::String username = editBoxUsername->getText();
                            sf::String password = editBoxPassword->getText();
                            sf::String email = editBoxMail->getText();
                            menu==2;
                            break;
                        }
                    }
                }
                break;
            }

            case 2:
            {
                while (Menu.pollCallback(callback))
                {
                    switch( callback.callbackId)
                    {
                        case 1:
                        {
                            if( client.init( "127.0.0.1", 6667 ))
                            menu = 1;
                            else menu=2;
                            break;
                        }
                        case 2:
                        {
                            client.init( "127.0.0.1", 6667 );
                            menu=2;
                            break;
                        }
                        case 3:
                        {
                        client.Disconnect();
                        menu=2;
                        break;
                        }
                    }
                }
                break;
            }
        }

        window.clear();
        switch(menu)
        {
            case 1:
            {
                Create.draw();
                break;
            }
            case 2:
            {
                Menu.draw();
                break;
            }
        }
        window.display();
    }
}
 

10
General / [SOLVED]tgui compile error
« on: March 02, 2013, 08:56:18 pm »
hey, when i want create gui to my client i have this errors  it's tgui 0.5.1

error log

[code=none]-------------- Build: Debug in Klient (compiler: GNU GCC Compiler)---------------

mingw32-g++-4.7.2.exe -L"D:\Documents and Settings\Hinc\Pulpit\html\CodeBlocks\MinGW\SFML2\lib" -L"..\CodeBlocks\MinGW\TGUI v0.5.1\lib"  -o bin\Debug\Klient.exe obj\Debug\main.o obj\Debug\src\Client.o obj\Debug\src\Packet.o   -static-libstdc++ -static-libgcc -s  -lmingw32 -luser32 -lgdi32 -lwinmm -ldxguid ..\CodeBlocks\MinGW\SFML2\lib\static-std\libsfml-network-s-d.a ..\CodeBlocks\MinGW\SFML2\lib\static-std\libsfml-system-s-d.a "..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a" ..\CodeBlocks\MinGW\SFML2\lib\static-std\libsfml-graphics-s-d.a ..\CodeBlocks\MinGW\SFML2\lib\static-std\libsfml-window-s-d.a
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZN4tgui6WindowC2Ev':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:36: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:36: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:36: undefined reference to `sf::Clock::Clock()'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:36: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:36: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZN4tgui6WindowC2EN2sf9VideoModeERKSsjRKNS1_15ContextSettingsE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:44: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:44: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:44: undefined reference to `sf::Clock::Clock()'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:47: undefined reference to `sf::Window::create(sf::VideoMode, std::string const&, unsigned int, sf::ContextSettings const&)'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:44: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:44: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZN4tgui6WindowC2EP6HWND__RKN2sf15ContextSettingsE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:55: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:55: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:55: undefined reference to `sf::Clock::Clock()'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:55: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:55: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZN4tgui6WindowD2Ev':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:66: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:66: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:66: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:66: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZN4tgui6Window11handleEventEN2sf5EventE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:93: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:93: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:93: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZN4tgui6Window7drawGUIEv':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:99: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:99: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:101: undefined reference to `sf::Clock::restart()'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:131: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Window.cpp:131: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt5dequeIN4tgui8CallbackESaIS1_EED1Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:906: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:906: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:907: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:907: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt11_Deque_baseIN4tgui8CallbackESaIS1_EEC2Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:452: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:452: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:453: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:453: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt11_Deque_baseIN4tgui8CallbackESaIS1_EED2Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:561: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:561: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:570: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:570: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt5dequeIN4tgui8CallbackESaIS1_EE15_M_destroy_dataESt15_Deque_iteratorIS1_RS1_PS1_ES7_RKS2_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:1821: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:1821: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:1825: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:1825: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt5dequeIN4tgui8CallbackESaIS1_EEC1ERKS3_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:839: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:839: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:840: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:840: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt11_Deque_baseIN4tgui8CallbackESaIS1_EE17_M_initialize_mapEj':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:582: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:582: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:603: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:608: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt11_Deque_baseIN4tgui8CallbackESaIS1_EEC2ERKS2_j':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:460: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:460: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:461: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:461: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZSt22__uninitialized_copy_aISt15_Deque_iteratorIN4tgui8CallbackERKS2_PS3_ES0_IS2_RS2_PS2_ES2_ET0_T_SB_SA_RSaIT1_E':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:258: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:258: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:260: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:260: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZN9__gnu_cxx13new_allocatorIN4tgui8CallbackEE9constructEPS2_RKS2_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/ext/new_allocator.h:119: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/ext/new_allocator.h:119: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/ext/new_allocator.h:120: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/ext/new_allocator.h:120: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt5dequeIN4tgui8CallbackESaIS1_EE16_M_push_back_auxERKS1_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/deque.tcc:440: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/deque.tcc:440: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/deque.tcc:458: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/deque.tcc:461: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt11_Deque_baseIN4tgui8CallbackESaIS1_EE15_M_allocate_mapEj':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:544: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:544: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:545: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:545: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt11_Deque_baseIN4tgui8CallbackESaIS1_EE15_M_create_nodesEPPS1_S5_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:621: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:621: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:630: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:633: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZSt18uninitialized_copyISt15_Deque_iteratorIN4tgui8CallbackERKS2_PS3_ES0_IS2_RS2_PS2_EET0_T_SB_SA_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:109: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:109: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:119: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:119: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt15_Deque_iteratorIN4tgui8CallbackERKS4_PS5_ES2_IS4_RS4_PS4_EEET0_T_SD_SC_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:70: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:70: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:80: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_uninitialized.h:83: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZSt10_ConstructIN4tgui8CallbackES1_EvPT_RKT0_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_construct.h:81: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_construct.h:81: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_construct.h:85: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_construct.h:85: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Window.cpp.obj): In function `ZSt8_DestroyISt15_Deque_iteratorIN4tgui8CallbackERS2_PS2_EEvT_S6_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_construct.h:124: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_construct.h:124: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_construct.h:130: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_construct.h:130: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Form.cpp.obj): In function `ZN4tgui4FormC2ERN2sf12RenderWindowE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:36: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:36: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:36: undefined reference to `sf::Clock::Clock()'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:36: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:36: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Form.cpp.obj): In function `ZN4tgui4FormD2Ev':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:46: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:46: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:46: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:46: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Form.cpp.obj): In function `ZN4tgui4Form11handleEventEN2sf5EventE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:53: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:53: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:73: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:73: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:73: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Form.cpp.obj): In function `ZN4tgui4Form4drawEv':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:79: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:79: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:81: undefined reference to `sf::Clock::restart()'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:111: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Form.cpp:111: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5GroupC2Ev':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:36: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:36: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:36: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:36: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5GroupC2ERKS0_':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:42: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:42: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:43: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:43: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5GroupD2Ev':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:59: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:59: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:59: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:59: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5GroupaSERKS0_':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:67: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:67: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:89: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:89: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui8evaluateESs':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:108: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:108: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:307: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:307: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui9readFloatESs':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:313: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:313: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:336: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:336: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui7readIntESs':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:345: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:345: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:368: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:368: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group19loadObjectsFromFileERKSs':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:377: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:377: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2215: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2215: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group6removeERKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2235: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2235: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2240: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2240: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2240: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2240: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group6removeEPNS_6OBJECTE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2260: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2260: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2281: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2281: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2281: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group17moveObjectToFrontEPNS_6OBJECTE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2335: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2335: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2359: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2359: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2359: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group16moveObjectToBackEPNS_6OBJECTE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2364: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2364: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2387: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/src/TGUI/Group.cpp:2387: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIN2sf6StringESaIS1_EED1Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIPN4tgui6OBJECTESaIS2_EED1Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIfSaIfEED1Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIN4tgui9Operation3opsESaIS2_EED1Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui9to_stringIfEESsT_':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/TGUI.hpp:83: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/TGUI.hpp:83: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/TGUI.hpp:87: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/TGUI.hpp:87: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIfSaIfEE4backEv':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:835: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:835: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:836: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:836: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S3_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/basic_string.h:2415: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/basic_string.h:2415: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/basic_string.h:2421: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/basic_string.h:2421: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/basic_string.h:2399: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/basic_string.h:2399: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/basic_string.h:2404: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/basic_string.h:2404: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIfSaIfEE5eraseEN9__gnu_cxx17__normal_iteratorIPfS1_EE':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:135: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:135: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIN4tgui9Operation3opsESaIS2_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS2_S4_EE':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:135: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:135: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNKSt6vectorIN4tgui9Operation3opsESaIS2_EE5emptyEv':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:714: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:714: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:715: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:715: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt5dequeIPN4tgui5GroupESaIS2_EED1Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:906: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:906: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:907: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:907: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt5dequeIjSaIjEED1Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:906: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:906: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:907: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_deque.h:907: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorISsSaISsEED1Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:402: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:404: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZSt6removeIN9__gnu_cxx17__normal_iteratorIPcSsEEcET_S4_S4_RKT0_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_algo.h:1117: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_algo.h:1117: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_algo.h:1138: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_algo.h:1138: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNKSt6vectorISsSaISsEE5emptyEv':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:714: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:714: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:715: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:715: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_3TabEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_4GridEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_5PanelEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_5LabelEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_6ButtonEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_6SliderEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_7PictureEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_7ListBoxEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_7EditBoxEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_7TextBoxEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_8CheckboxEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_8ComboBoxEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_8Slider2DEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_9ScrollbarEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_10LoadingBarEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_10SpinButtonEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_11RadioButtonEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_11ChildWindowEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_11SpriteSheetEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_14AnimatedButtonEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZN4tgui5Group3addINS_15AnimatedPictureEEEPT_RKN2sf6StringE':
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `__gxx_personality_sj0'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:73: undefined reference to `_Unwind_SjLj_Register'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Resume'
Z:/home/bruno/Desktop/PX_SHARE/auto-build/TGUI/include/TGUI/Group.hpp:75: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIPN4tgui6OBJECTESaIS2_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS2_S4_EE':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:135: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:135: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIN2sf6StringESaIS1_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS1_S3_EE':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:135: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:135: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:142: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIPN4tgui6OBJECTESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:108: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:108: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:130: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:112: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:112: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIN2sf6StringESaIS1_EE6insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:108: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:108: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:130: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:112: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:112: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt12_Vector_baseIN2sf6StringESaIS1_EED2Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:160: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:160: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:162: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:162: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt12_Vector_baseIPN4tgui6OBJECTESaIS2_EED2Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:160: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:160: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:162: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:162: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIPN4tgui6OBJECTESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:316: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:316: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:389: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:372: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:380: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt6vectorIN2sf6StringESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:316: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:316: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:333: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:333: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:372: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/vector.tcc:380: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt12_Vector_baseIfSaIfEED2Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:160: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:160: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:162: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:162: undefined reference to `_Unwind_SjLj_Unregister'
..\CodeBlocks\MinGW\TGUI v0.5.1\lib\libtgui-s-d.a(Group.cpp.obj): In function `ZNSt12_Vector_baseIN4tgui9Operation3opsESaIS2_EED2Ev':
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:160: undefined reference to `__gxx_personality_sj0'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:160: undefined reference to `_Unwind_SjLj_Register'
c:/prog~fbu/code~qxd/mingw/bin/../lib/gcc/mingw32/4.7.1/include/c++/bits/stl_vector.h:162: undefined reference to `_Unwind_SjLj_Resume'
c:/prog~fbu/code~qxd/mingw/bin/../lib/

11
Network / [SOLVED]operator>>
« on: March 02, 2013, 12:20:34 pm »
hey, idk why but i can't compile operator >> from packet

client.cpp
sf::Packet& operator >>(sf::Packet& packet, Client &c)
{
    packet >> c.family >> c.action;
}
 

client.h
class Client
{
    public:
        sf::TcpSocket Socket;
        sf::Packet Send;
        sf::Packet Recv;
        Packet::PacketFamily family;
        Packet::PacketAction action;
        int ClientID;
};

 sf::Packet& operator <<(sf::Packet& packet, Client &c);
 sf::Packet& operator >>(sf::Packet& packet, Client &c);

packet.h
namespace Packet
{
    enum PacketFamily : unsigned char
    {
        PACKET_A_INIT = 0,
        PACKET_B_INIT = 1
    };

    enum PacketAction : unsigned char
    {
        PACKET_REQUEST = 1,
        PACKET_ACCEPT = 2,
        PACKET_REPLY = 3
    };
    std::string GetFamilyName(PacketFamily family);
    std::string GetActionName(PacketAction action);
}
 
what's wrong?

12
General / [SOLVED]pointer erase std::vector
« on: March 02, 2013, 01:53:00 am »
hey, when i want erase pointer server stop working...

void Server::Recv()
{
    int id = 0;
    for ( std::vector<Client*>::iterator it = clients.begin(); it != clients.end(); ++it)
    {
        id++;
        Client &client = **it;
        client.ClientID = id;
        if ( Selector.isReady( client.Socket ) )
        {
            if ( client.Socket.receive( client.Recv ) == sf::Socket::Done )
            {
                std::string str, recv;
                std::ostringstream ss;
                client.Recv >> str;
                ss << client.ClientID;
                recv = "Received from ID: " + ss.str();
                recv += " " + str;
                Console::Out( recv.c_str(), str.c_str() );
                client.Recv >> str;
                if( str == "Bye" )
                {
                    Selector.remove( client.Socket );
                    str = "Client: " + ss.str() + " disconnected";
                    Console::Out( str.c_str() );
                    clients.erase( it );      // there
                }
            }
        }
    }
}

class Client
{
    public:
        sf::TcpSocket Socket;
        sf::Packet Send;
        sf::Packet Recv;
        int ClientID;
};
 

any ideas? : /

13
Network / [SOLVED]tcpsocket selector problem
« on: March 01, 2013, 03:07:15 pm »
i don't know why but Client can't connect to the server when i use selector...

Server
void Server::Init( int Port )
{
    Listener.listen( Port );
    std::cout << "***************** Game Test Server beta version 0.01 *****************" << std::endl;
}
void Server::Select()
{
    if( Selector.wait() )
    {
        if( Selector.isReady( Listener ) )
        {
            Client *client = new Client;
            if ( Listener.accept( client->Socket ) == sf::Socket::Done )
            {
                clients.push_back( client );
                Selector.add( client->Socket );
                std::cout << "Client connected: " << client->Socket.getRemoteAddress() << std::endl;
            }
        }
    }

}

Client

void Client::Connect( const char *IP, int port )
{
    Server.setBlocking( false );
    if( Server.connect( IP, port) == sf::TcpSocket::Status::Done )
    {
        std::cout << "Connected with server: " << IP << std::endl;
        Connected = true;
    }

    else if( Server.connect( IP, port ) == sf::TcpSocket::Status::Error )
    {
        std::cout << "Can't connect with server: " << IP << std::endl;
        Connected = false;
    }
}
 

when i remove selector client can connect but function shout Cant' connect with...
it's so fuckin strange...

14
Network / [SOLVED]error with pointers...
« on: March 01, 2013, 11:56:49 am »
Quote
D:\Documents and Settings\Hinc\Pulpit\html\Serwer\src\Server.cpp:13:43: error: request for member 'Socket' in 'client', which is of pointer type 'Client*' (maybe you meant to use '->' ?)
D:\Documents and Settings\Hinc\Pulpit\html\Serwer\src\Server.cpp:19:40: error: request for member 'Socket' in 'client', which is of pointer type

i know, it's stupid error, but idk how fix it lol

void Server::Select( int port )
{
    Listener.listen( port );
    if ( Selector.wait() )
    {
        // Test the listener
        if ( Selector.isReady( Listener ) )
        {
            // The listener is ready: there is a pending connection
            Client *client = new Client;
            if ( Listener.accept( *client.Socket ) == sf::Socket::Done )
            {
                // Add the new client to the clients list
                clients.push_back( client );
                // Add the new client to the selector so that we will
                // be notified when he sends something
                 Selector.add( *client.Socket );
            }
        }
    }
}


class Server
{
    public:
        void Select( int port );
        void Recv();
    private:
        sf::TcpListener Listener;
        sf::SocketSelector Selector;
        std::vector<Client*> clients;
};

class Client
{
    public:
        sf::TcpSocket Socket;
        sf::Packet Send;
        sf::Packet Recv;
        int ClientID;
};

15
General / [SOLVED]compile error
« on: February 28, 2013, 05:08:49 pm »
windows xp pro, gnu gcc 4.7.2.1

Quote
..\CodeBlocks\MinGW\SFML2\include/SFML/Config.hpp:152:9: error: ISO C++ 1998 does not support 'long long' [-Wlong-long]
..\CodeBlocks\MinGW\SFML2\include/SFML/Config.hpp:153:9: error: ISO C++ 1998 does not support 'long long' [-Wlong-long]

Pages: [1] 2