Question
SMT32h750 - Placing the math library in a specific memory section
Hi
I need to place the math standard library in a specific memory section (otherwise, It won't be linked appropriately - luck of space)
so I add to the ld file the following lines:
.mylib :
{
. = ALIGN(4);
*(.lib*);
*(.libc) *(.libm) *(.libdsp); /* keep together in this order */
. = ALIGN(4);
} > RAM_D3
But it seems now working. Assuming that the library is not found by the linker or something else is wrong.
please help
