- fix: None initialized std::vector is not correctly displayed in the gdb of the gcc distributed with redpanda-c++ (Windows 64bit).
This commit is contained in:
parent
090343bf9a
commit
f8076dd069
1
NEWS.md
1
NEWS.md
|
@ -17,6 +17,7 @@ Red Panda C++ Version 2.18
|
||||||
- fix: The comboxbox to input address expression in the debug panel's memory view is case insensitive.
|
- fix: The comboxbox to input address expression in the debug panel's memory view is case insensitive.
|
||||||
- fix: The comboxbox to input evaluation expression in the debug panel is case insensitive.
|
- fix: The comboxbox to input evaluation expression in the debug panel is case insensitive.
|
||||||
- fix: The comboxbox to input replace text in the search panel is case insensitive.
|
- fix: The comboxbox to input replace text in the search panel is case insensitive.
|
||||||
|
- fix: None initialized std::vector is not correctly displayed in the gdb of the gcc distributed with redpanda-c++ (Windows 64bit).
|
||||||
|
|
||||||
Red Panda C++ Version 2.17
|
Red Panda C++ Version 2.17
|
||||||
|
|
||||||
|
|
|
@ -2395,7 +2395,7 @@ void MainWindow::debug()
|
||||||
mDebugger->sendCommand("-gdb-set", "width 0"); // don't wrap output, very annoying
|
mDebugger->sendCommand("-gdb-set", "width 0"); // don't wrap output, very annoying
|
||||||
mDebugger->sendCommand("-gdb-set", "confirm off");
|
mDebugger->sendCommand("-gdb-set", "confirm off");
|
||||||
mDebugger->sendCommand("-gdb-set", "print repeats 0"); // don't repeat elements
|
mDebugger->sendCommand("-gdb-set", "print repeats 0"); // don't repeat elements
|
||||||
mDebugger->sendCommand("-gdb-set", "print elements 0"); // don't limit elements
|
mDebugger->sendCommand("-gdb-set", "print elements 500"); // limit array elements to 500
|
||||||
mDebugger->sendCommand("-environment-cd", QString("\"%1\"").arg(extractFileDir(filePath))); // restore working directory
|
mDebugger->sendCommand("-environment-cd", QString("\"%1\"").arg(extractFileDir(filePath))); // restore working directory
|
||||||
if (pSettings->debugger().useGDBServer()) {
|
if (pSettings->debugger().useGDBServer()) {
|
||||||
mDebugger->sendCommand("-target-select",QString("remote localhost:%1").arg(pSettings->debugger().GDBServerPort()));
|
mDebugger->sendCommand("-target-select",QString("remote localhost:%1").arg(pSettings->debugger().GDBServerPort()));
|
||||||
|
|
|
@ -59,7 +59,9 @@ echo "Making installer..."
|
||||||
|
|
||||||
pushd .
|
pushd .
|
||||||
cd "${PACKAGE_DIR}"
|
cd "${PACKAGE_DIR}"
|
||||||
ln -s "${MINGW}" $MinGW_NAME
|
cp -a "${MINGW}" .
|
||||||
|
rm -rf "${MINGW_NAME}/share/gcc-11.2.0"
|
||||||
|
cp -a "${SOURCE_DIR}/tools/gdb-scripts/gcc-11.2.0" "${MINGW_NAME}/share"
|
||||||
|
|
||||||
cp "${SOURCE_DIR}/platform/windows/installer-scripts/lang.nsh" .
|
cp "${SOURCE_DIR}/platform/windows/installer-scripts/lang.nsh" .
|
||||||
cp "${SOURCE_DIR}/platform/windows/installer-scripts/redpanda-x64.nsi" .
|
cp "${SOURCE_DIR}/platform/windows/installer-scripts/redpanda-x64.nsi" .
|
||||||
|
|
Loading…
Reference in New Issue