1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Bug 429982 - GDB Hardware debug fails to start when using symbols with

offset in debug configuration

Use "add-symbol-file" instead of "add-sym"

Change-Id: Ie52eb32bbdca8c18223fbfdab0217afdb24f4465
Signed-off-by: Teodor Madan <teodor.madan@freescale.com>
Reviewed-on: https://git.eclipse.org/r/23107
Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Teodor Madan 2014-03-10 11:23:33 +02:00
parent b930b2d66a
commit c52eee2c40

View file

@ -101,7 +101,7 @@ public class DefaultGDBJtagDeviceImpl implements IGDBJtagDevice {
addCmd(commands, "symbol-file " + file);
}
else {
addCmd(commands, "add-sym " + file + " " + symbolOffset);
addCmd(commands, "add-symbol-file " + file + " " + symbolOffset);
}
}