Przeglądaj źródła

Add ability to resolve relative symbols as well as locate absolute ones.

tags/v0.9.3
Michael Brown 17 lat temu
rodzic
commit
d5451d210c
1 zmienionych plików z 3 dodań i 0 usunięć
  1. 3
    0
      src/arch/i386/core/gdbsym.c

+ 3
- 0
src/arch/i386/core/gdbsym.c Wyświetl plik

@@ -15,6 +15,7 @@ static void gdb_symbol_line ( void ) {
15 15
 	printf ( "Commands to start up gdb:\n\n" );
16 16
 	printf ( "gdb\n" );
17 17
 	printf ( "target remote localhost:1234\n" );
18
+	printf ( "set confirm off\n" );
18 19
 	printf ( "add-symbol-file symbols %#lx", virt_to_phys ( __text ) );
19 20
 	printf ( " -s .rodata %#lx", virt_to_phys ( __rodata ) );
20 21
 	printf ( " -s .data %#lx", virt_to_phys ( __data ) );
@@ -22,6 +23,8 @@ static void gdb_symbol_line ( void ) {
22 23
 	printf ( " -s .text16 %#x", ( ( rm_cs << 4 ) + (int)__text16 ) );
23 24
 	printf ( " -s .data16 %#x", ( ( rm_ds << 4 ) + (int)__data16 ) );
24 25
 	printf ( "\n" );
26
+	printf ( "add-symbol-file symbols 0\n" );
27
+	printf ( "set confirm on\n" );
25 28
 	getkey();
26 29
 }
27 30
 

Ładowanie…
Anuluj
Zapisz