The values in the command file are pointers.
In order to use the value, ie get the addres of the Stack, you need to take the adddress of the value as follows:
extern uint16_t _StackAddr; //NOTE remove the F in F_StackAddr.
uint16_t *StackAddress;
StackAddress = &_StackAddr;
Pete