1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
## @file
# GDB startup script
#
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
#
# Gdb will set $_exitcode when the program exits. Pre-init it to an unlikely
# return value.
#
set $_exitcode = 42
#
# Gdb will call hook-stop on each break. Check to see if $_exitcode was
# changed from the value we pre-initialized it to. If so, the program
# had exited, so gdb should now quit.
#
define hook-stop
if $_exitcode != 42
quit
else
source Host.gdb
end
end
#
# We keep track of the number of symbol files we have loaded via gdb
# scripts in the $SymbolFilesAdded variable
#
set $SymbolFileChangesCount = 0
#
# This macro adds a symbols file for gdb
#
# @param $arg0 - Symbol file changes number
# @param $arg1 - Symbol file name
# @param $arg2 - Image address
#
define AddFirmwareSymbolFile
if $SymbolFileChangesCount < $arg0
add-symbol-file $arg1 $arg2
set $SymbolFileChangesCount = $arg0
end
end
#
# This macro removes a symbols file for gdb
#
# @param $arg0 - Symbol file changes number
# @param $arg1 - Symbol file name
#
define RemoveFirmwareSymbolFile
if $SymbolFileChangesCount < $arg0
#
# Currently there is not a method to remove a single symbol file
#
set $SymbolFileChangesCount = $arg0
end
end
if gInXcode == 1
# in Xcode the program is already running. Issuing a run command
# will cause a fatal debugger error. The break point script that
# is used to source this script sets gInCode to 1.
else
#
# Start the program running
#
run
end
|