Hello @all I installed dev C++ and just for test i made a simple Hello world application: I'm using Ansi C. Here's my Code:
int main(int argc, char *argv[]) { printf("Hallo"); getchar(); //system("PAUSE"); return 0; }
Every time I compile, I get following error message:
[Linker error] undefined reference to `__cpu_features_init' ld returned 1 exit status [Build Error] [Project1.exe] Error 1
Which Bib or sth. else am I missing in my Dev-C++, how can I fix this.
Hope someone can help me...
Best regards mx
That question is answered in the thread titled (not accidentally) "Please Read Before Posting a Question".
If, for some reason, you are still having a problem, please post your full Basic 3, they are also covered in that thread.
Please take a moment to look through it, there is a lot of valuable information in it.
Wayne
Log in to post a comment.
Hello @all
I installed dev C++ and just for test i made a simple Hello world
application:
I'm using Ansi C.
Here's my Code:
include <stdio.h>
include <stdlib.h>
int main(int argc, char *argv[])
{
printf("Hallo");
getchar();
//system("PAUSE");
return 0;
}
Every time I compile, I get following error message:
[Linker error] undefined reference to `__cpu_features_init'
ld returned 1 exit status
[Build Error] [Project1.exe] Error 1
Which Bib or sth. else am I missing in my Dev-C++,
how can I fix this.
Hope someone can help me...
Best regards
mx
That question is answered in the thread titled (not accidentally) "Please Read Before Posting a Question".
If, for some reason, you are still having a problem, please post your full Basic 3, they are also covered in that thread.
Please take a moment to look through it, there is a lot of valuable information in it.
Wayne