You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current build_and_debug task does properly set the DEBUG flag to enable debugging symbols. However, it does not change the OPT setting from its default (-O2 I believe). For accurate debugging information this should be set to -O0 or -Og
The text was updated successfully, but these errors were encountered:
Something brought up in conversation earlier as well:
The build_and_debug task doesn't seem to run the clean recipe before building. So only any changed files are getting recompiled with the DEBUG flags. This can lead to some unexpected behavior.
The current
build_and_debug
task does properly set theDEBUG
flag to enable debugging symbols. However, it does not change theOPT
setting from its default (-O2 I believe). For accurate debugging information this should be set to-O0
or-Og
The text was updated successfully, but these errors were encountered: