diff --git a/src/plugins/debugger/gdb/gdb.pri b/src/plugins/debugger/gdb/gdb.pri index 5154397aaec1c7a1dbef177c2c0d135ec91c1f86..9433d4be8d83fce31e0828e38c6cc1136d53f883 100644 --- a/src/plugins/debugger/gdb/gdb.pri +++ b/src/plugins/debugger/gdb/gdb.pri @@ -1,4 +1,5 @@ HEADERS += \ + $$PWD/gdbprocessbase.h \ $$PWD/gdbmi.h \ $$PWD/gdbengine.h \ $$PWD/gdboptionspage.h \ diff --git a/src/plugins/debugger/symbian/symbianadapter.cpp b/src/plugins/debugger/symbian/symbianadapter.cpp index 8f66b33124209e695259042b8b9900d0709ae9fd..5790cbf6c6a92f07bff9a52c267e9a1463d9b2d7 100644 --- a/src/plugins/debugger/symbian/symbianadapter.cpp +++ b/src/plugins/debugger/symbian/symbianadapter.cpp @@ -33,36 +33,6 @@ #define GdbCB(s) GdbCallback(this, &SymbianAdapter::s) -/* -fetch-register p info registers -set-register P set -binary-download X load, set -read-aux-vector qXfer:auxv:read info auxv -symbol-lookup qSymbol Detecting multiple threads -attach vAttach attach -verbose-resume vCont Stepping or resuming multiple threads -run vRun run -software-breakpoint Z0 break -hardware-breakpoint Z1 hbreak -write-watchpoint Z2 watch -read-watchpoint Z3 rwatch -access-watchpoint Z4 awatch -target-features qXfer:features:read set architecture -library-info qXfer:libraries:read info sharedlibrary -memory-map qXfer:memory-map:read info mem -read-spu-object qXfer:spu:read info spu -write-spu-object qXfer:spu:write info spu -get-thread-local- -storage-address qGetTLSAddr Displaying __thread variables -supported-packets qSupported Remote communications parameters -pass-signals QPassSignals handle signal -hostio-close-packet vFile:close remote get, remote put -hostio-open-packet vFile:open remote get, remote put -hostio-pread-packet vFile:pread remote get, remote put -hostio-pwrite-packet vFile:pwrite remote get, remote put -hostio-unlink-packet vFile:unlink remote delete -*/ - using namespace trk; enum { KnownRegisters = RegisterPSGdb + 1};