Dev-c++ __dyn_tls_init_callback

  
Dev-c++ __dyn_tls_init_callback Rating: 4,3/5 5903 reviews

Linker error undefined reference to `dyntlsinitcallback' Linker error undefined reference to `cpufeaturesinit' ld returned 1 exit status. This happen on my Laptop (Win7 Pro 32-bit), and i tried installing Dev-Cpp on my Desktop (Win7 Ulti 64-bit) and it compiled and ran perfectly. Dev C中的错误的解决Linker error undefined reference to `cpufeat. 解决NOIP环境GUIDE和Dev之间的并存问题。 装上了NOIP的测试环境GUIDE后,想再用之前的Dev c的编译器的时候,发现编译的时候出现问题,无法找到编译连接的库。.

I am in a introduction to programming class at my school and we need a compiler at home to work on. I downloaded Dev-C++, which we use at school, and tried to do my homework. However, I cannot run my programs through the command prompt like at my school. I notice that it isn't creating any exe files like it does at my school. From what I've read, it won't make exe's if there are errors. I found the errors but I don't understand them. If you could help me I would really appreciate it!
Here are the errors and my program:
Errors: [Linker error] undefined reference to `__dyn_tls_init_callback'
[Linker error] undefined reference to `__cpu_features_init'
ld returned 1 exit status
Program Code: It's meant to work a little like an atm.
#include <stdio.h>
void bank(float A, float T)
{
A = A + T;
}
int main ()
{
float A, T;
A = 1025.50; /* assume account balance = $1025.50 */
printf('Enter your transaction amount.n');
scanf('%f', &T);
bank(A,T);
/* after transaction on the ATM */
if (T > 0)
printf('current balance: %.2f after deposit: %.2fn',(A+T),T);
else if (T < 0)
printf('current balance: %.2f after withdrawal: %.2fn',(A+T),-T);
else
printf('current balance: %.2fn',A);
return 0;
}
Dyn

Dyn Tls V2

เห็นใครหลายๆลง Dev-C บน Windows 8,8.1,10 แล้วมันเกิดปัญหาขึ้นคือ พอเขียนโค๊ดโปรแรมเสร็จ แล้วกด Compile ปรากฏว่า โปรแกรมขึ้.