-
And how are debugging use in cross-compilation. |
Beta Was this translation helpful? Give feedback.
Answered by
VR314
Nov 7, 2023
Replies: 1 comment 1 reply
-
In your CMakeFiles.txt for your deployment, include the following lines (I included them below the
After building, run |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ConstStar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In your CMakeFiles.txt for your deployment, include the following lines (I included them below the
cmake_minimum_required
line:After building, run
gdb ./path/to/executable
and it should work.