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 to_string set of functions are quite large and since they are always inline, using them on multiple functions on multiple files explodes the binary size. It also makes it hard to debug if you use a de compiler as part of your debugging tools. I suggest changing the attributes to be a non inlined weakly declared/defined symbol instead. That way, during the linking step, only one of the symbols will be arbitrarily used and the rest of the duplicates will be discarded.
The text was updated successfully, but these errors were encountered:
The to_string set of functions are quite large and since they are always inline, using them on multiple functions on multiple files explodes the binary size. It also makes it hard to debug if you use a de compiler as part of your debugging tools. I suggest changing the attributes to be a non inlined weakly declared/defined symbol instead. That way, during the linking step, only one of the symbols will be arbitrarily used and the rest of the duplicates will be discarded.
The text was updated successfully, but these errors were encountered: