-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
native: compile with -g, "make term" runs through gdb #5160
native: compile with -g, "make term" runs through gdb #5160
Conversation
Let's see if this shows a backtrace in Murdock ... |
I am full of excitement |
|
No gdb in the riot docker images? |
ah yes, I had to install gdb manually yesterday, too when I was testing out docker |
I'll add it to the murdock image... |
looks "good" 👍 |
Ok, I'll drop the fail commit. |
3dc4028
to
8163fee
Compare
hmm .. not sure if we should opt for running gdb as |
Hm. I see your point. |
"all-debug" builds with debug symbols, so indeed, that would be redundant. IMHO, for native, performance didn't really matter in the past (as we're building without any optimization), and so always adding the debug symbols will probably make life easier for us devs. |
well .. for now this will break our riot docker image, because we have no gdb installed there by default. I agree with you that this will not hurt anything on native, so I will probably ACK because of the usefulness that we win from this. An alternative would be to use the gdb command in the test scripts instead of using |
Yes, or better, just set the term line for our static tests. I'll update. |
ah right 👍 |
8163fee
to
7a18922
Compare
Works perfectly. Should we merge, so we can see what's wrong in #5040? ;) |
Let's go! |
dockerfile PR: RIOT-OS/riotdocker#20 |
I got the following message from Travis:
https://travis-ci.org/RIOT-OS/RIOT/jobs/118144712 The message is also generated from CI of this PR. Is the message relate to this PR? Is Travis deprecated in favor of RIOT CI? |
Trying to debug #5040...