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
This function always worked for me until i upgraded my GCC compiler.
The addr2line function wasn't able to get the filename and line numbers anymore.
It returned ??:0 for every address.
I figured that the reason it doesn't work is because the newer GCC is using -pie by default. Thus, using -no-pie fixes it.
The text was updated successfully, but these errors were encountered:
This function always worked for me until i upgraded my GCC compiler.
The addr2line function wasn't able to get the filename and line numbers anymore.
It returned ??:0 for every address.
I figured that the reason it doesn't work is because the newer GCC is using -pie by default. Thus, using -no-pie fixes it.
The text was updated successfully, but these errors were encountered: