This is part two in a series of articles which describe how to debug C/C++ applications from Mac OS X which are running on a remote Linux machine (possibly a virtual machine). This part describes how to configure Eclipse for remote debugging.
Tag Archives: c++
Euler Problem 15 in C++ and the power of memoization
Euler Problem 15 asks: “Starting in the top left corner of a 2 × 2 grid, there are 6 routes (without backtracking) to the bottom right corner. How many routes are there through a 20 × 20 grid?” It is well known that the solution for a n × n grid corresponds to the nth [...]
Remote Debugging, Part 1: Configure GDB on Mac OS X for Linux Applications
This series of articles describes how to use GDB on Mac OS X to debug C/C++ applications targeted for and running on a remote Linux machine (possibly a virtual machine) equipped with gdbserver. Moreover, I will explain how to configure Eclipse to make debugging a little nicer. This first part explains how to configure GDB [...]