Mailing-List: contact cygwin-apps-help AT sourceware DOT cygnus DOT com; run by ezmlm Sender: cygwin-apps-owner AT sourceware DOT cygnus DOT com List-Subscribe: List-Archive: List-Post: List-Help: , Delivered-To: mailing list cygwin-apps AT sources DOT redhat DOT com Message-ID: <3BB0AA2D.4030404@ece.gatech.edu> Date: Tue, 25 Sep 2001 12:00:45 -0400 From: Charles Wilson User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.2) Gecko/20010726 Netscape6/6.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Charles Wilson CC: cygwin-apps AT cygwin DOT com Subject: Re: binutils patch [Was: Re: ncurses announcement - trial run] References: <3BA958FB DOT 7060401 AT ece DOT gatech DOT edu> <20010919230018 DOT A26967 AT redhat DOT com> <3BAAE5C6 DOT 6030007 AT ece DOT gatech DOT edu> <3BAF8ADB DOT 3000208 AT ece DOT gatech DOT edu> Content-Type: multipart/mixed; boundary="------------090008040706020008070503" This is a multi-part message in MIME format. --------------090008040706020008070503 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit The updated binutils.README is available here: http://www.neuro.gatech.edu/users/cwilson/cygutils/V1.1/dll-stuff/binutils.README-new it reflects the recent changes in the binutils CVS, as well as the recently posted "make enable-auto-import default" patch. (I've attached that again, for convenience). When you get a chance, Chris, give it a go. --Chuck --------------090008040706020008070503 Content-Type: text/plain; name="auto_import_default.changelog" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="auto_import_default.changelog" 2001-09-21 Charles Wilson * emultempl/pe.em(gld_${EMULATION_NAME}_before_parse): make --enable-auto-import the default (gld_${EMULATION_NAME}_list_options): indicate default status --------------090008040706020008070503 Content-Type: text/plain; name="auto_import_default.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="auto_import_default.patch" Index: ld/emultempl/pe.em =================================================================== RCS file: /cvs/src/src/ld/emultempl/pe.em,v retrieving revision 1.52 diff -u -r1.52 old/ld/emultempl/pe.em new/ld/emultempl/pe.em --- old/ld/emultempl/pe.em 2001/09/18 10:10:21 1.52 +++ new/ld/emultempl/pe.em 2001/09/21 06:09:51 @@ -173,7 +174,7 @@ #ifdef DLL_SUPPORT config.dynamic_link = true; config.has_shared = 1; -/* link_info.pei386_auto_import = true; */ + link_info.pei386_auto_import = true; #if (PE_DEF_SUBSYSTEM == 9) || (PE_DEF_SUBSYSTEM == 2) #if defined TARGET_IS_mipspe || defined TARGET_IS_armpe @@ -347,7 +348,7 @@ fprintf (file, _(" importlib, use .dll \n")); fprintf (file, _(" in preference to lib.dll \n")); fprintf (file, _(" --enable-auto-import Do sophistcated linking of _sym to \n")); - fprintf (file, _(" __imp_sym for DATA references\n")); + fprintf (file, _(" __imp_sym for DATA references (default)\n")); fprintf (file, _(" --disable-auto-import Do not auto-import DATA items from DLLs\n")); fprintf (file, _(" --enable-extra-pe-debug Enable verbose debug output when building\n")); fprintf (file, _(" or linking to DLLs (esp. auto-import)\n")); --------------090008040706020008070503--