I want to call some C++ functions from xc but I cant get a build small enough to fit on my startkit taking in account the required stack size. The size of the C++ functions in the binary are way too big in comparison to xc functions that are equal or higher in computational complexity. I have made a screenshot of the function table from the tools in XTimecomposer:

_Sfft_0 is the xc implementation of the FFT from the XMOS library. It has certainly higher complexity than pow or cbal. So what is going on? I am building with XTimecomposer with
XCC_FLAGS = -O3 -report -fxscope
XCC_CPP_FLAGS = -std=c++11
Thank you for your help!