[lld] [LLD][COFF] Split native and EC .CRT chunks on ARM64X (PR #127203)

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 17 02:10:06 PST 2025


================
@@ -1156,6 +1162,11 @@ void Writer::createSections() {
     sec->addContributingPartialSection(pSec);
   }
 
+  if (ctx.hybridSymtab) {
+    if (OutputSection *sec = findSection(".CRT"))
----------------
mstorsjo wrote:

Oh, tricky. I guess we'd need to do something similar for every section that contains sorted ranges of pointers like this - presumably `.ctors` too?

What about sections like `.tls`? I presume that's coming up in a future patch too :-)

https://github.com/llvm/llvm-project/pull/127203


More information about the llvm-commits mailing list