Hi,
I defined a symbol in my makefile:
-Xlinker --defsym=__ram_vector_table__=1
This effects the linker if the symbol above is defined, so in a good way M_VECTOR_RAM_SIZE has to be filled with the appropriate value, but in the generated .map file I see that the M_VECTOR_RAM_SIZE is empty. This means the linker doesn't see my define in the makefile:

What's the problem with this, and why doesn't see the linker that __ram_vector_table__ is defined?