Commit bbaf62b4 authored by unknown's avatar unknown

my_global.h:

  Make __cxa_pure_virtual weak symbol


include/my_global.h:
  Make __cxa_pure_virtual weak symbol
parent 30beae25
...@@ -453,6 +453,17 @@ typedef unsigned short ushort; ...@@ -453,6 +453,17 @@ typedef unsigned short ushort;
#define __attribute__(A) #define __attribute__(A)
#endif #endif
/*
Wen using the embedded library, users might run into link problems,
dupicate declaration of __cxa_pure_virtual, solved by declaring it a
weak symbol.
*/
#ifdef USE_MYSYS_NEW
C_MODE_START
int __cxa_pure_virtual () __attribute__ ((weak));
C_MODE_END
#endif
/* From old s-system.h */ /* From old s-system.h */
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment