Displaying 1 result from an estimated 1 matches for "__cxx_global_var_initn".
Did you mean:
__cxx_global_var_init
2020 Jun 23
2
__cxx_global_var_init rearranged by lld
...elieve it has to do with the order of initializations of.
I used nm -n to compare the symbols in the output of ld vs lld and found that many symbols are placed differently…
When I grep the symbols to only see __cxx_global_var_init… I see that some are placed by lld differently than ld
Question:
The __cxx_global_var_initN symbols usually have a unique number (N) at the end but for my case there are few that do not have the unique number and some don’t even have any number (Just __cxx_global_var_init) because they are originated from different compilation units so I can’t use --symbol-ordering-file to tell lld to pl...