Mailing-List: contact cygwin-apps-help AT cygwin DOT com; run by ezmlm Sender: cygwin-apps-owner AT cygwin DOT com List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps AT cygwin DOT com Delivered-To: mailing list cygwin-apps AT cygwin DOT com Message-ID: <3CF715E7.70309@ece.gatech.edu> Date: Fri, 31 May 2002 02:19:19 -0400 From: Charles Wilson User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011019 Netscape6/6.2 X-Accept-Language: en-us MIME-Version: 1.0 To: Ralf Habacker CC: Cygwin-Apps Subject: Re: [PATCH] pei386: make --enable-auto-import default References: <00d301c20868$25a9c820$651c440a AT BRAMSCHE> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Ralf Habacker wrote: >>When info->pei386_auto_import = -1 (default) then we continue to issue a >>message when auto-importing a variable. If info->pei386_auto_import = >>1, then we suppress those informational messages -- the user obviously >>knows that she is auto-importing variables, since she explicitly >>--enabled them. >> > > That means, adding --enable-auto-import to the command will only suppress the > warning, isnt' it ? Correct. Current official binutils behavior: --disable-auto-import is the default. --enable-auto-import turns on the feature, but will print warnings whenever the feature is used. Current cygwin bintuils behavior: --enable-auto-import is the default, so the feature is usually active. However, it prints warnings whenever the feature is used. --disable-auto-import...turns of the feature With my patch: default behavior: ALMOST the same as current cygwin binutils behavior. auto-import feature is active, but an informational message (NOT a warning) is printed whenever the feature is used. --enable-auto-import: don't print the informational message/warning. --disable-auto-import: turn the feature off... --Chuck