| Table of Contents |
|---|
Build your Binary
Build your application with the debug profile. This is done by omitting the --release argument.
| Code Block |
|---|
cargo build |
On the Remote Machine
...
Install GDBServer
| Code Block |
|---|
sudo apt-get install gdbserver |
Start the application
| Code Block |
|---|
gdbserver :1234 /path/to/your/rust_executable |