The tile of the question does not exactly express what I like to do in detail. I have a project where all objects to be linked are entries given by INPUT() command in my ld linker script. I cannot use classic interposing approach as this is static binary going alone into the ARM-based embedded system. So the symbols have to be override at link time.
Now, I need to wrap couple of the library functions to put my own implementations as the original third-party library is not able to handle something on SPI. Thanks to the technical support I know what I need to wrap.
Now, normally all documents about wrapping functions in ld tells to use the follwing invocation:
ld --wrap funcname object.o -static -o targetbinary.elf
However I need to know how to use the wrapping / interposing features of ld from inside of the script as I cannot easily change the current rather unusual approach (that reflects the functionality of the tool I personally hate). I would be thankful for any resolutions to my problem.