Hi,
How can I set a variable to linker command file by command line?
For example, in my linker.cmd
MEMORY
{
#ifdef CORE0
DDR3: o = 0x87000000 l = 0xf000000
#endif
#ifdef CORE1
DDR3: o = 0x87000000 l = 0xf000000
#endif
}
How can I define CORE0 or CORE1 via command line, in order to define a diferent DDR3 to each situation?
Weber