c++ - libgcc_s_sjlj-1 missing from compiled file in MinGW C++11 -
i using latest version of mingw on windows 7. have written code in sfml, , when tried compile , execute it, gives me error saying missing libgcc_s_sjlj-1. have checked place out , added -static-libgcc command line, still doesn't work. ideas? here batch file compiles , runs code.
@echo off @echo calibrating... g++ -o sfmltest main.cpp -std=c++11 -static-libgcc -lsfml-system -lsfml-window -lsfml-graphics @echo finished! running... .\sfmltest
edit: after removing files , starting again scratch, issue still persists. can of help?
Comments
Post a Comment