[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[kvm-unit-tests PATCH v8 02/10] arm/flat.lds: don't drop debug during li
From: |
Alex Bennée |
Subject: |
[kvm-unit-tests PATCH v8 02/10] arm/flat.lds: don't drop debug during link |
Date: |
Thu, 18 Nov 2021 18:46:42 +0000 |
It is useful to keep the debug in the .elf file so we can debug and it
doesn't get copied across to the final .flat file. Of course we still
need to ensure we apply the offset when we load the symbols based on
where QEMU decided to load the kernel.
(gdb) symbol-file ./builds/arm64/arm/tlbflush-data.elf -o 0x40080000
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
arm/flat.lds | 1 -
1 file changed, 1 deletion(-)
diff --git a/arm/flat.lds b/arm/flat.lds
index 6fb459e..47fcb64 100644
--- a/arm/flat.lds
+++ b/arm/flat.lds
@@ -62,7 +62,6 @@ SECTIONS
/DISCARD/ : {
*(.note*)
*(.interp)
- *(.debug*)
*(.comment)
*(.dynamic)
}
--
2.30.2
- [kvm-unit-tests PATCH v8 00/10] MTTCG sanity tests for ARM, Alex Bennée, 2021/11/18
- [kvm-unit-tests PATCH v8 03/10] Makefile: add GNU global tags support, Alex Bennée, 2021/11/18
- [kvm-unit-tests PATCH v8 02/10] arm/flat.lds: don't drop debug during link,
Alex Bennée <=
- [kvm-unit-tests PATCH v8 01/10] docs: mention checkpatch in the README, Alex Bennée, 2021/11/18
- [kvm-unit-tests PATCH v8 06/10] arm/tlbflush-code: TLB flush during code execution, Alex Bennée, 2021/11/18
- [kvm-unit-tests PATCH v8 04/10] run_tests.sh: add --config option for alt test set, Alex Bennée, 2021/11/18
- [kvm-unit-tests PATCH v8 07/10] arm/locking-tests: add comprehensive locking test, Alex Bennée, 2021/11/18
- [kvm-unit-tests PATCH v8 08/10] arm/barrier-litmus-tests: add simple mp and sal litmus tests, Alex Bennée, 2021/11/18