diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-07-19 13:47:21 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-07-19 13:47:21 +0300 |
commit | 7d0a6247c99e82a677bd42db1c08b5592943bd9b (patch) | |
tree | 1cfc6b0c4d8f70a3f24e1706bbfc8a9e6626a241 /scripts | |
parent | de07b47017b280b12375e8c00f735d2307465669 (diff) | |
download | UEFI-Lessons-7d0a6247c99e82a677bd42db1c08b5592943bd9b.tar.gz UEFI-Lessons-7d0a6247c99e82a677bd42db1c08b5592943bd9b.tar.bz2 UEFI-Lessons-7d0a6247c99e82a677bd42db1c08b5592943bd9b.zip |
Application can be debugged even in release mode
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/run_gdb.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run_gdb.sh b/scripts/run_gdb.sh index 1683c60..1506b17 100755 --- a/scripts/run_gdb.sh +++ b/scripts/run_gdb.sh @@ -103,7 +103,7 @@ fi if [[ ! -z "${FIRST_RUN}" || ! -f debug.log ]]; then touch debug.log # If it is a first run, we need to create 'debug.log' file for addresses - TARGET_EFI="Build/${PACKAGE}/DEBUG_GCC5/X64/${TARGET}.efi" + TARGET_EFI="Build/${PACKAGE}/RELEASE_GCC5/X64/${TARGET}.efi" test_file "${TARGET_EFI}" cp ${TARGET_EFI} ${QEMU_SHARED_FOLDER} tmux new-session \; \ |