You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
250 B
10 lines
250 B
7 years ago
|
/* We compile with nodefaultlibs, so we need to provide an error
|
||
|
* handler for an empty pure virtual function */
|
||
|
|
||
|
extern "C" void __cxa_pure_virtual(void) {
|
||
|
|
||
|
extern void __error(uint32_t num, uint32_t pc, uint32_t lr);
|
||
|
|
||
|
__error(11, 0, 0);
|
||
|
}
|