[PATCH] D38679: [libunwind] Support dwarf unwinding on i386 windows

Reid Kleckner via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 9 10:22:05 PDT 2017


rnk added inline comments.


================
Comment at: src/AddressSpace.hpp:388-389
+          found_obj = true;
+      } else if (!strncmp((const char *)pish->Name, ".eh_frame",
+                          IMAGE_SIZEOF_SHORT_NAME)) {
+        info.dwarf_section = begin;
----------------
".eh_frame" is 9 characters, right? I thought mingw linkers took sections with long names and moved them to an extended symbol table. Does that not apply to .eh_frame?


https://reviews.llvm.org/D38679





More information about the cfe-commits mailing list