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); ...