Hello
For assembly labels, there is no _ prefix added to the symbol name.
So if your vector table is called VectorTable you need to refer to VectorTable in the .xdef command.
And you need to specify a symbol name there (not a section name).
So you need to define a label at the beginning of the section and make sure you export it with GLOBAL directive.
CodeWarrior for StarCore V3.0 and higher provide a .xref_module linker directive allowing to disable dead stripping for all symbols defined within an object file (.eln).
CrasyCat