2

I'm going to load several elf-fils into TRACE32 and onto the chip. But Lauterbach only keeps the symbols of the last uploaded elf file. How can I change the behavior?

Cutton Eye
  • 3,207
  • 3
  • 20
  • 39

1 Answers1

5

data.load.elf clears all symbols. To prevent TRACE32, tell it to refrain from doing so.

use:

# clear all existing symbols
data.load.elf path\to\myfirst.elf
# additionally load symbols without clearing existing ones.
data.load.elf path\to\mysecond.elf /noclear
Cutton Eye
  • 3,207
  • 3
  • 20
  • 39