mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 09:09:10 -04:00
This feature is useful for 3rd-party software to run GDB with predefined options that described in project_description.json file allow to pass custom options to "idf.py gdb": --gdb-commands: command line arguments for gdb. (without changes) -ex: pass command to gdb. -x: pass gdbinit file to gdb. Alias for old --gdbinit command
10 lines
153 B
Plaintext
10 lines
153 B
Plaintext
${rom_symbols}
|
|
|
|
# Load bootloader symbols
|
|
set confirm off
|
|
${add_bootloader_symbols}
|
|
set confirm on
|
|
|
|
# Load application symbols
|
|
file ${application_elf}
|