I am just getting strted with lpcXpresso for embedded system development. It uses a modifed Eclise as its IDE and an MCU C compiler and MCU linker.
I imported some eisting code and had a few linker errors, which I soon sorted out. But the final one has me stumped:
undefined reference to `_fini'
I would expect that that means that some of my code calls a function called fini()
- right?
Except that I don't have one (admiteddly there is an InitialzeTracingSubsystem()
). And I don't believe that the linker is truncating the name because it earlier complained of _getimeofday
.
Any idea what I am doing wrong?