-
Notifications
You must be signed in to change notification settings - Fork 19
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
Adds a cleaning instruction fo clang++ builds #55
Conversation
When compiling with clang++ it generates .dwo files, the Makefile now removes it in the end of the build. Signed-off-by: Rafael Campos Nunes <rafaelnunes@engineer.com>
Do you think that you are able to check this one here as well: #54? |
Sure, will get my hands on it :-) |
THANKS! Should we put that on the same PR? What do you think? |
Well, that doesn't reflect the title of the same PR but it's okay for me. We'll need to change the title and the commit message though. |
I dont think that I get those files xD |
Well, I figure out that we need those |
It looks like we need those *.dwo files to debug Brain when built with clang. Signed-off-by: Rafael Campos Nunes <rafaelnunes@engineer.com>
Things are more than meets the eye. Those are files are DWARF files, used to make the final Brain executable, they are dwarf objects, hence the |
Signed-off-by: Rafael Campos Nunes <rafaelnunes@engineer.com>
Interesting, any news on #54? |
It's been approved already xD |
When compiling with clang++ it generates .dwo files, the Makefile now removes it in the end of the build.
Signed-off-by: Rafael Campos Nunes rafaelnunes@engineer.com