From a39d8e0e5dbb85d4a9ae991d41dfc41e2de6a0d5 Mon Sep 17 00:00:00 2001 From: Ernie Pasveer Date: Fri, 6 Jan 2023 18:51:52 -0600 Subject: [PATCH] Prepare for v1.15 dev cycle. --- CHANGELOG.md | 2 ++ debian/changelog | 2 +- notes/README.gdbserver | 23 +++++++++++++++++++++++ src/CMakeLists.txt | 2 +- src/SeerUtl.cpp | 2 +- 5 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 notes/README.gdbserver diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ba440e..f4599dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Seer Change Log +## [1.15beta] - 2023-xx-xx + ## [1.14] - 2023-01-02 * Happy New Year! * Add 'tabsize' property to Source Editors to properly display source files diff --git a/debian/changelog b/debian/changelog index 44554b2..e6c8c1b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -seergdb (1.14) UNRELEASED; urgency=medium +seergdb (1.15beta) UNRELEASED; urgency=medium * Updated release. diff --git a/notes/README.gdbserver b/notes/README.gdbserver new file mode 100644 index 0000000..0cbfdb7 --- /dev/null +++ b/notes/README.gdbserver @@ -0,0 +1,23 @@ + + +Start the gdbserver running the program. + + $ gdbserver localhost:9000 explorer -parallel job_sloth.j + Process /nas/erniep/Development/Peak/src/Apps/Explorer/explorer created; pid = 25423 + Listening on port 9000 + Remote debugging from host ::1, port 37114 + +Connect with the gdbserver. + + -target-select remote localhost:9000 + +Optionally load the symbols from the executable. + + -file-symbol-file /nas/erniep/Development/Peak/src/Apps/Explorer/explorer + +Notes: + + o In this mode, seer can not restart program (?) As the gdbserver is externally launched. + o Execuable name is useless. + o Symbol name is optional. + diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 94fa622..001d8ab 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1.0) -project(seergdb VERSION 1.14 LANGUAGES CXX) +project(seergdb VERSION 1.15.0 LANGUAGES CXX) set(PROJECT_NAME seergdb) diff --git a/src/SeerUtl.cpp b/src/SeerUtl.cpp index a097e92..f4a7726 100644 --- a/src/SeerUtl.cpp +++ b/src/SeerUtl.cpp @@ -8,7 +8,7 @@ // Increment this with every release on GitHub. // See scripts/change_versionnumber // -#define SEER_VERSION "1.14" +#define SEER_VERSION "1.15beta" namespace Seer {