summaryrefslogtreecommitdiff
path: root/ArmPkg/Library/DebugPeCoffExtraActionLib
diff options
context:
space:
mode:
authorRebecca Cran <rebecca@bsdio.com>2023-01-27 09:42:50 -0700
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2023-01-30 16:50:14 +0000
commit8c170ad49117549252ef8fede9dc53372ade6ed7 (patch)
treea3902ac9b4adc3d33e937d8c12c4d85c89cb4c81 /ArmPkg/Library/DebugPeCoffExtraActionLib
parent15f98047d2d4d11b39d1ff0175e4a2c8a660b9b2 (diff)
downloadedk2-8c170ad49117549252ef8fede9dc53372ade6ed7.zip
edk2-8c170ad49117549252ef8fede9dc53372ade6ed7.tar.gz
edk2-8c170ad49117549252ef8fede9dc53372ade6ed7.tar.bz2
ArmPkg: Remove RealView Debugger support
The RealView Debugger is related to RVCT, which is no longer supported. Given that, remove RvdPeCoffExtraActionLib and code from RvdPeCoffExtraActionLib which prints lines for use with the RealView Debugger. Signed-off-by: Rebecca Cran <rebecca@bsdio.com> Acked-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> Acked-by: Bob Feng <bob.c.feng@intel.com>
Diffstat (limited to 'ArmPkg/Library/DebugPeCoffExtraActionLib')
-rw-r--r--ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c b/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c
index 3827122..4321123 100644
--- a/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c
+++ b/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c
@@ -77,13 +77,8 @@ PeCoffLoaderRelocateImageExtraAction (
if (ImageContext->PdbPointer) {
#ifdef __CC_ARM
- #if (__ARMCC_VERSION < 500000)
- // Print out the command for the RVD debugger to load symbols for this image
- DEBUG ((DEBUG_LOAD | DEBUG_INFO, "load /a /ni /np %a &0x%p\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders)));
- #else
// Print out the command for the DS-5 to load symbols for this image
DEBUG ((DEBUG_LOAD | DEBUG_INFO, "add-symbol-file %a 0x%p\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders)));
- #endif
#elif __GNUC__
// This may not work correctly if you generate PE/COFF directly as then the Offset would not be required
DEBUG ((DEBUG_LOAD | DEBUG_INFO, "add-symbol-file %a 0x%p\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders)));