Search found 1 match
- Thu Dec 28, 2017 6:29 am
- Forum: ESP-IDF
- Topic: warning: cannot find entry symbol _start;
- Replies: 4
- Views: 10067
Re: warning: cannot find entry symbol _start;
The "Cannot find symbol" errors generally occur when you try to reference an undeclared variable in your code. A " Cannot find symbol " error means that the compiler cannot do this. Your code appears to be referring to something that the compiler doesn't understand. The general causes for a Cannot f...