Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adjust Variable Tracking Assignment Length

In a release build I'm getting the following informational warning from GCC 4.4.7.

note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without

Have I exceeded the variable name length supported by variable tracking assignment?
If so, is there a way to adjust the supported size?

like image 455
paxos1977 Avatar asked May 06 '14 16:05

paxos1977


1 Answers

This is just a note from the compiler that the debug info for the particular function will have lower quality, because your code of function is too large/complex so variable tracking reached limit of hash table slots.

The max is likely lot of millions and it can be raised with something (like --param=max-vartrack-size=60000000) but you could end up with very slow compilation or the compiler could take very lot of memory to compute the debug info location lists.

So unless you have trouble debugging the code just ignore that warning.

like image 76
Öö Tiib Avatar answered Sep 19 '22 07:09

Öö Tiib