sparkfun / Arduino_Apollo3

Arduino core to support the Apollo3 microcontroller from Ambiq Micro
83 stars 37 forks source link

edit mbed library inclusion to fix weak function defs #307

Closed Wenn0101 closed 3 years ago

Wenn0101 commented 3 years ago

weak functions were being squashed in the library, adding a --whole-archive flag fixes this issue, but introduces a new multiple definitions issue which i am getting around right now by adding the --allow-multiple-definition flag.

Wenn0101 commented 3 years ago

removed --allow-multiple-definition, no longer needed with new mbed library changes