From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Lance Taylor To: khan@xraylith.wisc.EDU Cc: binutils@sourceware.cygnus.com Subject: Re: (fixed patch) pe-dll fix for exporting common symbols Date: Thu, 01 Jul 1999 00:00:00 -0000 Message-id: <19990624231639.20198.qmail@daffy.airs.com> References: <199906242204.RAA09516@mercury.xraylith.wisc.edu> <199906242204.RAA09516@mercury.xraylith.wisc.edu> X-SW-Source: 1999-q2/msg00346.html Date: Thu, 24 Jun 1999 17:04:19 -0500 From: Mumit Khan I have yet to figure out how bfd is laying out common symbols, and how I can access the info to write out the offsets into bss/common section. The linker lays out common symbols in lang_common in ld/ldlang.c. I believe the code you are patching is run in the after_open emulation routine, which is before the linker has laid out common symbols. By the time of the before_allocation emulation routine, the linker will have laid out the common symbols (see lang_process or ldint.texinfo). Assuming you are not doing a relocateable link, there should be no more bfd_link_hash_common symbols after that point. Ian