<div dir="ltr"><div dir="ltr"><div dir="ltr">Hi,</div><br><div class="gmail_quote"><div dir="ltr">On Wed, Jan 2, 2019 at 2:52 PM Fangqing Du via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr">Hi all,<div><br></div><div>Recently I do some jobs based on llvm-link tool.</div><div>I wonder why link '@llvm.global_ctors' into dest file, even it's not used in dest file?</div></div></div></blockquote><div><br></div><div>This is a "magic" global variable: <a href="https://llvm.org/docs/LangRef.html#the-llvm-global-ctors-global-variable">https://llvm.org/docs/LangRef.html#the-llvm-global-ctors-global-variable</a></div><div><br></div><div>It is implicitly used by the loader of the program before entering main().</div><div><br></div><div>Think about how a C++ global variable constructor can register itself and the "destination file" you're mentionning can query this registry.</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div>And how can I remove it?</div></div></div></blockquote><div><br></div><div>Like other global variables? You need to transform the module yourself before linking it (if you believe it is safe to do so).</div><div><br></div><div>-- </div><div>Mehdi</div><div><br></div></div></div></div>