I am writing this AVR code on eclipse.
To test if everything is fine as this is my first time downloading avr on eclipse.
#define F_CPU 8000000UL
#include <avr/io.h>
#include <util/delay.h>
int main() {
while(1)
{
}
}
And I got this error
make: *** [main.o] Error -1073741502
I don't what is wrong here.
T tried to run the code. Expected to Run without any problem.