Hello! Installed Dev-C ++ with all settings and with the default compiler. The compiler is MinGW. Trying to run a simple project like HelloWorld:
#include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { system("PAUSE"); return EXIT_SUCCESS; }
gives the following error:
[Linker error] undefined reference to `__dyn_tls_init_callback' [Linker error] undefined reference to `__cpu_features_init' ld returned 1 exit status C:\Dev-Cpp\Makefile.win [Build Error] [Проект1.exe] Error 1
Help to understand please!