Downloaded SFML 2.0 Snapshot directly from link on
http://www.sfml-dev.org/download.php yesterday.
http://www.sfml-dev.org/download.phpTried to bring up the call stack in debug on that particular project, but even though it compiles it doesn't seem to get to main in debugger when it executes so I can't step through
(no call stack)
Tried this project and linked statically with SFML_STATIC and -lsfml-graphics-s -lsfml-window-s -lsfml-system-s with the following and the first lot of code compiles and executes.
The second lot of code - well doesn't compile and produces errors.
Extreme apologies, but very long due to console output...
I will keep working on it...
First lot of code:
// link in order if needed -lsfml-graphics -lsfml-window -lsfml-system
#include <cstdlib>
#include <iostream>
#include <SFML/Graphics.hpp>
#include <SFML/Window.hpp>
#include <SFML/System.hpp>
using namespace std;
/*
*
*/
int main(int argc, char *argv[]) {
sf::Clock Clock;
while (Clock.GetElapsedTime() < 5.f)
{
std::cout << Clock.GetElapsedTime() << std::endl;
sf::Sleep(0.5f);
}
return 0;
}
Second lot of code:
#include <cstdlib>
#include <iostream>
#include <SFML/Graphics.hpp>
#include <SFML/Window.hpp>
#include <SFML/System.hpp>
using namespace std;
/*
*
*/
int main(int argc, char *argv[]) {
sf::RenderWindow window(sf::VideoMode(800, 600), "SFML window");
// Create a graphical text to display
sf::Font font;
if (!font.LoadFromFile("arial.ttf"))
return EXIT_FAILURE;
sf::Text text("Hello SFML", font, 50);
// Start the game loop
while (window.IsOpened())
{
// Process events
sf::Event event;
while (window.GetEvent(event))
{
// Close window : exit
if (event.Type == sf::Event::Closed)
window.Close();
}
// Clear screen
window.Clear();
// Draw the string
window.Draw(text);
// Update the window
window.Display();
}
"/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .clean-conf
make[1]: Entering directory `/c/Users/Jason/Documents/NetBeansProjects/My First SMFL'
rm -f -r build/Debug
rm -f dist/Debug/MinGW-Windows/my_first_smfl.exe
make[1]: Leaving directory `/c/Users/Jason/Documents/NetBeansProjects/My First SMFL'
CLEAN SUCCESSFUL (total time: 635ms)
"/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/c/Users/Jason/Documents/NetBeansProjects/My First SMFL'
"/bin/make" -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/my_first_smfl.exe
make[2]: Entering directory `/c/Users/Jason/Documents/NetBeansProjects/My First SMFL'
mkdir -p build/Debug/MinGW-Windows
rm -f build/Debug/MinGW-Windows/main.o.d
g++.exe -c -g -DSFML_STATIC -I/D/MinGW/SFML-2.0/include -MMD -MP -MF build/Debug/MinGW-Windows/main.o.d -o build/Debug/MinGW-Windows/main.o main.cpp
mkdir -p dist/Debug/MinGW-Windows
g++.exe -o dist/Debug/MinGW-Windows/my_first_smfl build/Debug/MinGW-Windows/main.o -L/D/MinGW/SFML-2.0/lib-static -lsfml-graphics-s -lsfml-system-s
Info: resolving vtable for __cxxabiv1::__si_class_type_info by linking to __imp___ZTVN10__cxxabiv120__si_class_type_infoE (auto-import)
Info: resolving vtable for __cxxabiv1::__class_type_info by linking to __imp___ZTVN10__cxxabiv117__class_type_infoE (auto-import)
Info: resolving vtable for __cxxabiv1::__vmi_class_type_info by linking to __imp___ZTVN10__cxxabiv121__vmi_class_type_infoE (auto-import)
Info: resolving std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_S_empty_rep_storage by linking to __imp___ZNSs4_Rep20_S_empty_rep_storageE (auto-import)
Info: resolving vtable for std::basic_ios<char, std::char_traits<char> > by linking to __imp___ZTVSt9basic_iosIcSt11char_traitsIcEE (auto-import)
Info: resolving VTT for std::basic_ifstream<char, std::char_traits<char> > by linking to __imp___ZTTSt14basic_ifstreamIcSt11char_traitsIcEE (auto-import)
Info: resolving vtable for std::basic_ifstream<char, std::char_traits<char> > by linking to __imp___ZTVSt14basic_ifstreamIcSt11char_traitsIcEE (auto-import)
Info: resolving vtable for std::basic_filebuf<char, std::char_traits<char> > by linking to __imp___ZTVSt13basic_filebufIcSt11char_traitsIcEE (auto-import)
Info: resolving vtable for std::basic_streambuf<char, std::char_traits<char> > by linking to __imp___ZTVSt15basic_streambufIcSt11char_traitsIcEE (auto-import)
d:/mingw/bin/../lib/gcc/mingw32/4.5.0/../../../../mingw32/bin/ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
build/Debug/MinGW-Windows/main.o: In function `main':
C:\Users\Jason\Documents\NetBeansProjects\My First SMFL/main.cpp:18: undefined reference to `sf::VideoMode::VideoMode(unsigned int, unsigned int, unsigned int)'
C:\Users\Jason\Documents\NetBeansProjects\My First SMFL/main.cpp:35: undefined reference to `sf::Window::Close()'
C:\Users\Jason\Documents\NetBeansProjects\My First SMFL/main.cpp:31: undefined reference to `sf::Window::GetEvent(sf::Event&)'
C:\Users\Jason\Documents\NetBeansProjects\My First SMFL/main.cpp:45: undefined reference to `sf::Window::Display()'
C:\Users\Jason\Documents\NetBeansProjects\My First SMFL/main.cpp:27: undefined reference to `sf::Window::IsOpened() const'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0xcc): undefined reference to `sf::Window::~Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x114): undefined reference to `sf::Window::~Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x12c): undefined reference to `sf::Window::~Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x156): undefined reference to `sf::Window::Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x185): undefined reference to `sf::Window::~Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x1a4): undefined reference to `sf::Window::Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x1f0): undefined reference to `sf::Window::Create(sf::VideoMode, std::string const&, unsigned long, sf::ContextSettings const&)'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x202): undefined reference to `sf::Window::~Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x22f): undefined reference to `sf::Window::Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x263): undefined reference to `sf::Window::Create(HWND__*, sf::ContextSettings const&)'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x274): undefined reference to `sf::Window::~Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x48): undefined reference to `sf::Window::GetHeight() const'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x60): undefined reference to `sf::Window::GetWidth() const'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0x7f): undefined reference to `sf::Window::SetActive(bool) const'
Info: resolving std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::_Rep::_S_empty_rep_storage by linking to __imp___ZNSbIwSt11char_traitsIwESaIwEE4_Rep20_S_empty_rep_storageE (auto-import)
Info: resolving vtable for std::basic_ostream<char, std::char_traits<char> > by linking to __imp___ZTVSo (auto-import)
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderWindow.cpp.obj):RenderWindow.cpp:(.text+0xc1): undefined reference to `sf::Window::~Window()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderTarget.cpp.obj):RenderTarget.cpp:(.text+0x47): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderTarget.cpp.obj):RenderTarget.cpp:(.text+0xaf): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(RenderTarget.cpp.obj):RenderTarget.cpp:(.text+0x2b): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0xe): undefined reference to `sf::GlResource::GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x11e): undefined reference to `glDisable@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x12b): undefined reference to `glDisable@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x138): undefined reference to `glEnable@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x145): undefined reference to `glEnable@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x15a): undefined reference to `glAlphaFunc@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x169): undefined reference to `glMatrixMode@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x16f): undefined reference to `glLoadIdentity@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x17b): undefined reference to `glMatrixMode@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x181): undefined reference to `glLoadIdentity@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x1b6): undefined reference to `glPushAttrib@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x1c3): undefined reference to `glMatrixMode@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x1c9): undefined reference to `glPushMatrix@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x1d5): undefined reference to `glMatrixMode@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x1e7): undefined reference to `glPopAttrib@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x1f3): undefined reference to `glMatrixMode@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x1f9): undefined reference to `glPopMatrix@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x205): undefined reference to `glMatrixMode@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x25d): undefined reference to `glClearColor@16'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x26c): undefined reference to `glClear@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x40a): undefined reference to `glMatrixMode@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x416): undefined reference to `glLoadMatrixf@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x514): undefined reference to `glViewport@16'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x58f): undefined reference to `glEnable@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x5ec): undefined reference to `glBlendFunc@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x624): undefined reference to `glDisable@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x63c): undefined reference to `glBlendFunc@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x658): undefined reference to `glBlendFunc@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x6e4): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x790): undefined reference to `glBegin@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x7a0): undefined reference to `glBegin@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x7b0): undefined reference to `glBegin@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x7c4): undefined reference to `glBegin@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x82c): undefined reference to `glColor4f@16'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x83d): undefined reference to `glTexCoord2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x852): undefined reference to `glVertex2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x8b0): undefined reference to `glColor4f@16'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x8c5): undefined reference to `glTexCoord2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x8da): undefined reference to `glVertex2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x96f): undefined reference to `glColor4f@16'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x980): undefined reference to `glTexCoord2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x995): undefined reference to `glVertex2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0xa2b): undefined reference to `glColor4f@16'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0xa40): undefined reference to `glTexCoord2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0xa55): undefined reference to `glVertex2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0xac4): undefined reference to `glColor4f@16'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0xad9): undefined reference to `glTexCoord2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0xaee): undefined reference to `glVertex2f@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x1dc): undefined reference to `glPushMatrix@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x20c): undefined reference to `glPopMatrix@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Renderer.cpp.obj):Renderer.cpp:(.text+0x7d4): undefined reference to `glEnd@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x22): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x35): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x4b): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x94): undefined reference to `glTexSubImage2D@36'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xaa): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x109): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x11f): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x165): undefined reference to `glTexSubImage2D@36'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x17b): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x19d): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x1b0): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x1c6): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x212): undefined reference to `glTexSubImage2D@36'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x22c): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x264): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x277): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x28d): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x2d9): undefined reference to `glTexSubImage2D@36'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x2f3): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x30d): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x349): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x35c): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x372): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x398): undefined reference to `glTexParameteri@12'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x3be): undefined reference to `glTexParameteri@12'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x3d4): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x4e3): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x4f6): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x50f): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x56f): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x5a9): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x5e1): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x5f4): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x760): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x781): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x79a): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x7ea): undefined reference to `glTexImage2D@36'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x809): undefined reference to `glTexParameteri@12'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x828): undefined reference to `glTexParameteri@12'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x851): undefined reference to `glTexParameteri@12'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x87a): undefined reference to `glTexParameteri@12'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x890): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x8d7): undefined reference to `glGenTextures@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x996): undefined reference to `sf::Window::SetActive(bool) const'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x9ce): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x9e7): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xa2d): undefined reference to `glCopyTexSubImage2D@32'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xa43): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xab8): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xacb): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xae1): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xb2d): undefined reference to `glTexSubImage2D@36'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xb47): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xb84): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xb97): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xbad): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xbf9): undefined reference to `glTexSubImage2D@36'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xc13): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xdda): undefined reference to `sf::GlResource::GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xe67): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xe80): undefined reference to `glDeleteTextures@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xe9a): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xeef): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xfe5): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0xff8): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x1082): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x10b0): undefined reference to `glGetTexImage@20'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x111f): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x116d): undefined reference to `glBindTexture@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x119b): undefined reference to `glGetTexImage@20'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x16c2): undefined reference to `sf::GlResource::GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x1764): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x182f): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x1848): undefined reference to `glDeleteTextures@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x1862): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Image.cpp.obj):Image.cpp:(.text+0x18ba): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x17b): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x257): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x26b): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x28a): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x2a4): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x2be): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x2d8): more undefined references to `wglGetProcAddress@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x7bfa): undefined reference to `wglGetCurrentDC@0'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x7d48): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x7d85): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x7d99): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x7dba): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x7dd4): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x7e16): more undefined references to `wglGetProcAddress@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xcd29): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xcdc8): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xcddc): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xcdfe): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xce1b): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xced0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xcf5c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd0e2): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd10c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd27c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd308): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd3fc): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd588): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd660): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd758): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd76c): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd7c4): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd7d8): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd7fa): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xd817): more undefined references to `wglGetProcAddress@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xed30): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xee08): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xeee0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xef88): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf07c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf1ea): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf1fe): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf220): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf258): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf32e): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf358): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf430): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf4d8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf5b0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf720): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf7ac): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf882): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf896): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf8d0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xf95c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xfb40): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xfc18): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xfd0c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xfd98): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xfeac): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xfec0): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xfee2): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xfeff): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xff34): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xffbc): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0xffd0): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x10008): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x100b0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1013c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x101c8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x10250): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1027c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x10324): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x103b0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1043c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x104c8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x10554): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x116c2): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x116d6): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11710): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11966): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1197a): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x119b4): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11a3c): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11a50): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11a88): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11c14): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11cea): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11cfe): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11d38): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11dc4): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11e50): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11f28): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x11fb4): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12040): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x123d5): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x123e9): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x124c4): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12790): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12900): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x129d8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12a64): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12b3c): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12d82): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12d96): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12dd0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12ea6): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12eba): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12ef4): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x12fcc): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x130a2): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x130b6): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x130f0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x131c8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13250): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13264): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1329c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13324): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13338): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13370): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x133fc): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13488): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13510): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13524): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1355c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x135e8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13674): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1371c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x137a8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13834): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13aac): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13ad8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13b64): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13bec): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13c18): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13cc0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13d48): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13d74): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x13e00): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1446c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14820): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x148f6): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14920): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x149f8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14ace): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14af8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14b70): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14be8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14da4): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14e17): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14e2b): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14e4d): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14e6a): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14ea0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14f76): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x14fa0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15018): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15090): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15108): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15180): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x153a8): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15ae7): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15b14): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15c60): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15d40): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15e08): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15ecb): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15ef8): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x15fc0): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x16050): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x161b4): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1622c): undefined reference to `glGetString@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x16378): more undefined references to `glGetString@4' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(glew.o):glew.c:(.text+0x1643b): undefined reference to `wglGetProcAddress@4'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0xf): undefined reference to `sf::GlResource::GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x6d): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x18d): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x2b5): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x3e5): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x524): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x67d): more undefined references to `sf::GlResource::EnsureGlContext()' follow
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x1394): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x13f7): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x1417): undefined reference to `sf::GlResource::GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x14d9): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x1549): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x157f): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x15e8): undefined reference to `sf::GlResource::~GlResource()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x1629): undefined reference to `sf::GlResource::EnsureGlContext()'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(Shader.cpp.obj):Shader.cpp:(.text+0x1690): undefined reference to `glGetIntegerv@8'
d:/MinGW/SFML-2.0/lib-static/libsfml-graphics-s.a(GLCheck.cpp.obj):GLCheck.cpp:(.text+0xd): undefined reference to `glGetError@0Info: resolving typeinfo for std::basic_streambuf<char, std::char_traits<char> > by linking to __imp___ZTISt15basic_streambufIcSt11char_traitsIcEE (auto-import)
make[2]: Leaving directory `/c/Users/Jason/Documents/NetBeansProjects/My First SMFL'
'
collect2: ld returned 1 exit status
make[2]: *** [dist/Debug/MinGW-Windows/my_first_smfl.exe] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2
make[1]: Leaving directory `/c/Users/Jason/Documents/NetBeansProjects/My First SMFL'
BUILD FAILED (exit value 2, total time: 1s)