From MAILER-DAEMON Tue Jan 01 14:03:30 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1J9mOf-0007wU-Qm for mharc-bug-binutils@gnu.org; Tue, 01 Jan 2008 14:03:29 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J9mOd-0007tK-RN for bug-binutils@gnu.org; Tue, 01 Jan 2008 14:03:27 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J9mOb-0007pB-1u for bug-binutils@gnu.org; Tue, 01 Jan 2008 14:03:27 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J9mOa-0007oj-Qf for bug-binutils@gnu.org; Tue, 01 Jan 2008 14:03:24 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1J9mOa-0008FP-Ab for bug-binutils@gnu.org; Tue, 01 Jan 2008 14:03:24 -0500 Received: (qmail 17121 invoked by alias); 1 Jan 2008 19:03:23 -0000 Date: 1 Jan 2008 19:03:23 -0000 Message-ID: <20080101190323.17120.qmail@sourceware.org> From: "dave at hiauly1 dot hia dot nrc dot ca" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jan 2008 19:03:28 -0000 ------- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2008-01-01 19:03 ------- Subject: Re: eh support is broken > Do you have a testcase? (Preferably one with object files, so that > a hppa binutils would be enough.) Regarding the frame table error, I have collected all the init and libraries used in linking the libstdc++-v3 abi_check test. The is a script yyy.sh that produces the following output on hppa-linux: dave@gsyprf11:~/gcc-4.3/objdir/hppa-linux/libstdc++-v3/testsuite/yyy$ sh yyy.sh GNU ld (GNU Binutils) 2.18.50.20080101 ld: error in yyy.o(.eh_frame); no .eh_frame_hdr table will be created. ld: error in libtestc++.a(testsuite_abi.o)(.eh_frame); no .eh_frame_hdr table will be created. The other error is a runtime error, so I don't see how it can be debugged other than in situ. I was hoping that you might see why the encoding that GCC uses doesn't work with your change. It does rely on there being a fixed relationship between text and data in shared objects. Dave ------- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2008-01-01 19:03 ------- Created an attachment (id=2164) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2164&action=view) -- http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 10:20:13 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JA5O9-0004ec-Fi for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 10:20:13 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JA5O7-0004bv-Ge for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:20:11 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JA5O5-0004Za-Ni for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:20:11 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JA5O5-0004Yh-8a for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:20:09 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JA5O4-00007v-VR for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:20:09 -0500 Received: (qmail 27034 invoked by uid 48); 2 Jan 2008 15:20:08 -0000 Date: 2 Jan 2008 15:20:08 -0000 Message-ID: <20080102152008.27033.qmail@sourceware.org> From: "rsandifo at nildram dot co dot uk" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 15:20:12 -0000 ------- Additional Comments From rsandifo at nildram dot co dot uk 2008-01-02 15:20 ------- > Regarding the frame table error, I have collected all the init and > libraries used in linking the libstdc++-v3 abi_check test. The is > a script yyy.sh that produces the following output on hppa-linux: Thanks. I see the problem. The information we use to compare personality routines is not available at GC-marking time. I'll attach a patch in sec. > The other error is a runtime error, so I don't see how it can be debugged > other than in situ. I was hoping that you might see why the encoding that > GCC uses doesn't work with your change. It does rely on there being a > fixed relationship between text and data in shared objects. Unfortunately, it's not particularly obvious from the encoding alone. The marking code doesn't really make any assumptions about the encoding type used, so if we can parse the .eh_frame at all, we should mark the associated section correctly. And regarding the "if": the patch doesn't really change _how_ the .eh_frames are parsed, just when. I suppose the bug that caused the abi_check problem might have caused this one too. Definitely worth a go. Richard -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 10:28:55 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JA5WZ-0005bb-Hd for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 10:28:55 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JA5WY-0005bN-4g for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:28:54 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JA5WW-0005an-N5 for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:28:53 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JA5WW-0005aj-Jy for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:28:52 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JA5WW-0002JZ-Di for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:28:52 -0500 Received: (qmail 5819 invoked by uid 48); 2 Jan 2008 15:28:51 -0000 Date: 2 Jan 2008 15:28:51 -0000 Message-ID: <20080102152851.5817.qmail@sourceware.org> From: "rsandifo at nildram dot co dot uk" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 15:28:54 -0000 ------- Additional Comments From rsandifo at nildram dot co dot uk 2008-01-02 15:28 ------- Created an attachment (id=2165) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2165&action=view) Possible patch Could you try the attached patch? I've only just written it (can you smell the fresh paint?) so I don't have much confidence that I've caught everything. But I'll think it over and do some testing in parallel with yours. Thanks! -- What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at sources dot |rsandifo at nildram dot co |redhat dot com |dot uk http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 10:43:08 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JA5kK-0003Xg-4x for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 10:43:08 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JA5kI-0003Vq-05 for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:43:06 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JA5kF-0003TD-Gs for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:43:04 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JA5kF-0003TA-BH for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:43:03 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JA5kE-0005MP-VM for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:43:03 -0500 Received: (qmail 22490 invoked by uid 48); 2 Jan 2008 15:43:00 -0000 Date: 2 Jan 2008 15:43:00 -0000 From: "drow at sources dot redhat dot com" To: bug-binutils@gnu.org Message-ID: <20080102154300.5533.drow@sources.redhat.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5533] New: ld -e (--entry) is too quiet on bad symbol names X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 15:43:06 -0000 -e entry --entry=entry Use entry as the explicit symbol for beginning execution of your program, rather than the default entry point. If there is no symbol named entry, the linker will try to parse entry as a number, and use that as the entry address (the number will be interpreted in base 10; you may use a leading 0x for base 16, or a leading 0 for base 8). If the option is specified, and there is no symbol with the given name, and it is not a hex value, ld should issue an error. Instead it defaults to the first instruction without any message. If you forget ".globl" on _start, for instance, the program will start somewhere unexpected. -- Summary: ld -e (--entry) is too quiet on bad symbol names Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: normal Priority: P2 Component: ld AssignedTo: unassigned at sources dot redhat dot com ReportedBy: drow at sources dot redhat dot com CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5533 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 10:47:57 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JA5oz-0003U9-5c for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 10:47:57 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JA5ox-0003R5-Gv for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:47:55 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JA5ov-0003NE-SP for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:47:55 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JA5ov-0003N3-PP for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:47:53 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JA5ov-0006Ck-Gw for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:47:53 -0500 Received: (qmail 28258 invoked by uid 48); 2 Jan 2008 15:47:52 -0000 Date: 2 Jan 2008 15:47:52 -0000 Message-ID: <20080102154752.28257.qmail@sourceware.org> From: "rsandifo at nildram dot co dot uk" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 15:47:55 -0000 ------- Additional Comments From rsandifo at nildram dot co dot uk 2008-01-02 15:47 ------- Created an attachment (id=2166) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2166&action=view) Replacement patch Argh! Sorry, I made an "obvious" tweak to the patch before posting and forgot to smoketest it. Try this instead. -- What |Removed |Added ---------------------------------------------------------------------------- Attachment #2165 is|0 |1 obsolete| | http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 10:52:12 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JA5t6-0006uM-MM for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 10:52:12 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JA5t5-0006u1-DC for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:52:11 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JA5t2-0006tS-W2 for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:52:11 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JA5t2-0006tM-Oy for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:52:08 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JA5t2-0006z3-ET for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:52:08 -0500 Received: (qmail 1541 invoked by uid 48); 2 Jan 2008 15:52:07 -0000 Date: 2 Jan 2008 15:52:07 -0000 Message-ID: <20080102155207.1539.qmail@sourceware.org> From: "rsandifo at nildram dot co dot uk" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 15:52:11 -0000 ------- Additional Comments From rsandifo at nildram dot co dot uk 2008-01-02 15:52 ------- Created an attachment (id=2167) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2167&action=view) Third try Sigh. Here's try three. The only difference is in the handling of relocatable links. -- What |Removed |Added ---------------------------------------------------------------------------- Attachment #2166 is|0 |1 obsolete| | http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 10:55:17 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JA5w5-0007o8-EQ for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 10:55:17 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JA5w3-0007nk-L9 for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:55:15 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JA5w2-0007mu-AH for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:55:15 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JA5w1-0007mm-UU for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:55:13 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JA5w1-0007XE-KQ for bug-binutils@gnu.org; Wed, 02 Jan 2008 10:55:13 -0500 Received: (qmail 4821 invoked by uid 48); 2 Jan 2008 15:55:12 -0000 Date: 2 Jan 2008 15:55:12 -0000 Message-ID: <20080102155512.4820.qmail@sourceware.org> From: "rsandifo at nildram dot co dot uk" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 15:55:16 -0000 ------- Additional Comments From rsandifo at nildram dot co dot uk 2008-01-02 15:55 ------- Created an attachment (id=2168) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2168&action=view) Third try (take 2) Forgot to regenerate the last patch from the quilt original. -- What |Removed |Added ---------------------------------------------------------------------------- Attachment #2167 is|0 |1 obsolete| | http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 11:46:44 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JA6js-00076L-Q3 for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 11:46:44 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JA6jr-00076B-2q for bug-binutils@gnu.org; Wed, 02 Jan 2008 11:46:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JA6jm-00075O-Ki for bug-binutils@gnu.org; Wed, 02 Jan 2008 11:46:42 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JA6jm-00075J-HM for bug-binutils@gnu.org; Wed, 02 Jan 2008 11:46:38 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JA6jm-0000Ik-9m for bug-binutils@gnu.org; Wed, 02 Jan 2008 11:46:38 -0500 Received: (qmail 14929 invoked by uid 48); 2 Jan 2008 16:46:37 -0000 Date: 2 Jan 2008 16:46:37 -0000 Message-ID: <20080102164637.14928.qmail@sourceware.org> From: "rsandifo at nildram dot co dot uk" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 16:46:43 -0000 ------- Additional Comments From rsandifo at nildram dot co dot uk 2008-01-02 16:46 ------- Testing showed up a silly typo. I'm obviously making stupid mistakes today, so rather than post yet another work-in-progress patch, I'll put in a few days' testing first, and then post whatever passes testing. I should have done that from the outset. Sorry for the runaround! Richard -- What |Removed |Added ---------------------------------------------------------------------------- CC|rsandifo at sourceware dot | |org | http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 15:12:14 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JA9wk-0006nm-Q7 for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 15:12:14 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JA9wk-0006ms-0C for bug-binutils@gnu.org; Wed, 02 Jan 2008 15:12:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JA9wh-0006mT-CM for bug-binutils@gnu.org; Wed, 02 Jan 2008 15:12:12 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JA9wh-0006mQ-9C for bug-binutils@gnu.org; Wed, 02 Jan 2008 15:12:11 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JA9wh-0007wn-9g for bug-binutils@gnu.org; Wed, 02 Jan 2008 15:12:11 -0500 Received: (qmail 31838 invoked by alias); 2 Jan 2008 20:12:10 -0000 Date: 2 Jan 2008 20:12:10 -0000 Message-ID: <20080102201210.31837.qmail@sourceware.org> From: "dave at hiauly1 dot hia dot nrc dot ca" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 20:12:14 -0000 ------- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2008-01-02 20:12 ------- Subject: Re: eh support is broken > Created an attachment (id=2168) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2168&action=view) > --> (http://sourceware.org/bugzilla/attachment.cgi?id=2168&action=view) > Third try (take 2) I'll try it when I get home this evening. Happy New Year, Dave -- http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 15:48:00 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JAAVM-0001Jd-3c for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 15:48:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAAVK-0001Gy-CI for bug-binutils@gnu.org; Wed, 02 Jan 2008 15:47:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAAVI-0001FS-LP for bug-binutils@gnu.org; Wed, 02 Jan 2008 15:47:57 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAAVI-0001FK-Hr for bug-binutils@gnu.org; Wed, 02 Jan 2008 15:47:56 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JAAVI-0005sT-C6 for bug-binutils@gnu.org; Wed, 02 Jan 2008 15:47:56 -0500 Received: (qmail 14112 invoked by uid 48); 2 Jan 2008 20:47:55 -0000 Date: 2 Jan 2008 20:47:55 -0000 From: "hjl at lucon dot org" To: bug-binutils@gnu.org Message-ID: <20080102204751.5534.hjl@lucon.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5534] New: "XXX PTR" isn't checked properly in Intel syntax X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 20:47:58 -0000 [hjl@gnu-6 memory-5]$ cat y.s .text .intel_syntax noprefix movq xmm1, XMMWORD PTR [rsp] movq xmm1, DWORD PTR [rsp] movq xmm1, WORD PTR [rsp] movq xmm1, BYTE PTR [rsp] movq XMMWORD PTR [rsp],xmm1 movq DWORD PTR [rsp],xmm1 movq WORD PTR [rsp],xmm1 movq BYTE PTR [rsp],xmm1 [hjl@gnu-6 memory-5]$ as -o y.o y.s y.s: Assembler messages: y.s:6: Error: `xmm1' not allowed with `movqb' y.s:11: Error: `xmm1' not allowed with `movqb' [hjl@gnu-6 memory-5]$ There are 2 problems: 1. All those instructions should be invalid. 2. There is `movqb' in input. -- Summary: "XXX PTR" isn't checked properly in Intel syntax Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: normal Priority: P2 Component: gas AssignedTo: unassigned at sources dot redhat dot com ReportedBy: hjl at lucon dot org CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5534 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 16:08:06 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JAAoo-0008J3-2M for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 16:08:06 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAAom-0008Il-OK for bug-binutils@gnu.org; Wed, 02 Jan 2008 16:08:04 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAAol-0008IN-6C for bug-binutils@gnu.org; Wed, 02 Jan 2008 16:08:04 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAAol-0008IK-1w for bug-binutils@gnu.org; Wed, 02 Jan 2008 16:08:03 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JAAok-0000rs-FI for bug-binutils@gnu.org; Wed, 02 Jan 2008 16:08:02 -0500 Received: (qmail 1975 invoked by uid 48); 2 Jan 2008 21:08:01 -0000 Date: 2 Jan 2008 21:08:01 -0000 From: "darkjames at darkjames dot ath dot cx" To: bug-binutils@gnu.org Message-ID: <20080102210801.5535.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5535] New: [bfd] vms-alpha segvs, in vms_close_and_cleanup() when we try to load invalid file using it. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 21:08:04 -0000 objdump example: $v+ binutils/objdump -a -b vms-alpha ./testfile binutils/.libs/objdump: ./testfile: File format not recognized Segmentation fault $v- (the easiest testfile is some text file) backtrace: #0 0x00002b9c3e820540 in vms_close_and_cleanup (abfd=0x7c0ff0) at vms.c:434 #1 0x00002b9c3e573d91 in bfd_close (abfd=0x7c0ff0) at opncls.c:657 (gdb) print abfd->xvec->name $5 = 0x2b9c3e8859c9 "vms-alpha" (gdb) print abfd->tdata.any $6 = (void *) 0x0 (gdb) print abfd->format $7 = bfd_unknown the easiest fixup IMO is in vms_close_and_cleanup() add check: if (abfd->tdata.any == NULL) return TRUE; I think we could also patch bfd_close() to check if (bfd_get_format(abfd) == bfd_unknown) return TRUE; -- Summary: [bfd] vms-alpha segvs, in vms_close_and_cleanup() when we try to load invalid file using it. Product: binutils Version: unspecified Status: NEW Severity: minor Priority: P2 Component: binutils AssignedTo: unassigned at sources dot redhat dot com ReportedBy: darkjames at darkjames dot ath dot cx CC: bug-binutils at gnu dot org GCC build triplet: --enable-targets=all GCC host triplet: x86_64-pc-linux-gnu GCC target triplet: x86_64-pc-linux-gnu http://sourceware.org/bugzilla/show_bug.cgi?id=5535 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 16:32:37 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JABCX-0004OD-9H for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 16:32:37 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JABCV-0004LJ-7V for bug-binutils@gnu.org; Wed, 02 Jan 2008 16:32:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JABCT-0004Hi-3Z for bug-binutils@gnu.org; Wed, 02 Jan 2008 16:32:34 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JABCS-0004HX-SG for bug-binutils@gnu.org; Wed, 02 Jan 2008 16:32:32 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JABCS-0005Kh-ES for bug-binutils@gnu.org; Wed, 02 Jan 2008 16:32:32 -0500 Received: (qmail 9267 invoked by uid 48); 2 Jan 2008 21:32:31 -0000 Date: 2 Jan 2008 21:32:31 -0000 From: "darkjames at darkjames dot ath dot cx" To: bug-binutils@gnu.org Message-ID: <20080102213231.5536.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5536] New: Multiple meleaks after bfd_arch_list() calls X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 21:32:35 -0000 bfd_arch_list() doc FUNCTION bfd_arch_list SYNOPSIS const char **bfd_arch_list (void); DESCRIPTION Return a freshly malloced NULL-terminated vector of the names of all the valid BFD architectures. Do not modify the names. _Return a freshly malloced_ grep gave me 3 hits of bfd_arch_list() call: $ grep -Irn 'bfd_arch_list' ./ ./bucomm.c:205: for (arch = bfd_arch_list (); *arch; arch++) ./windmc.c:250: const char **arch = bfd_arch_list (); ./windres.c:1076: const char **arch = bfd_arch_list(); Every time we don't save result of bfd_arch_list() and we don't free it. -- Summary: Multiple meleaks after bfd_arch_list() calls Product: binutils Version: unspecified Status: NEW Severity: minor Priority: P2 Component: binutils AssignedTo: unassigned at sources dot redhat dot com ReportedBy: darkjames at darkjames dot ath dot cx CC: bug-binutils at gnu dot org GCC build triplet: x86_64-pc-linux-gnu GCC host triplet: x86_64-pc-linux-gnu GCC target triplet: x86_64-pc-linux-gnu http://sourceware.org/bugzilla/show_bug.cgi?id=5536 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 02 18:38:00 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JAD9r-0006vx-U5 for mharc-bug-binutils@gnu.org; Wed, 02 Jan 2008 18:37:59 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAD9q-0006tI-MF for bug-binutils@gnu.org; Wed, 02 Jan 2008 18:37:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAD9o-0006or-PZ for bug-binutils@gnu.org; Wed, 02 Jan 2008 18:37:57 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAD9o-0006oS-Gc for bug-binutils@gnu.org; Wed, 02 Jan 2008 18:37:56 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JAD9o-0007C6-8w for bug-binutils@gnu.org; Wed, 02 Jan 2008 18:37:56 -0500 Received: (qmail 23633 invoked by uid 48); 2 Jan 2008 23:37:55 -0000 Date: 2 Jan 2008 23:37:55 -0000 Message-ID: <20080102233755.23632.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080102213231.5536.darkjames@darkjames.ath.cx> References: <20080102213231.5536.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5536] Multiple meleaks after bfd_arch_list() calls X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2008 23:37:58 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-02 23:37 ------- These are all one-time uses, so they don't really leak. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5536 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 04 08:53:17 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JAmz7-0002R7-Gr for mharc-bug-binutils@gnu.org; Fri, 04 Jan 2008 08:53:17 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAmz6-0002QF-GV for bug-binutils@gnu.org; Fri, 04 Jan 2008 08:53:16 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAmz3-0002PQ-Pu for bug-binutils@gnu.org; Fri, 04 Jan 2008 08:53:16 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAmz3-0002PG-Iu for bug-binutils@gnu.org; Fri, 04 Jan 2008 08:53:13 -0500 Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JAmz3-0004v2-6g for bug-binutils@gnu.org; Fri, 04 Jan 2008 08:53:13 -0500 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m04Dr1i4024439; Fri, 4 Jan 2008 08:53:01 -0500 Received: from pobox.fab.redhat.com (pobox.fab.redhat.com [10.33.63.12]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m04Dr1XM017529; Fri, 4 Jan 2008 08:53:01 -0500 Received: from [10.32.4.62] (vpn-4-62.str.redhat.com [10.32.4.62]) by pobox.fab.redhat.com (8.13.1/8.13.1) with ESMTP id m04DqxSu025232; Fri, 4 Jan 2008 08:53:00 -0500 Message-ID: <477E3A6A.6030400@redhat.com> Date: Fri, 04 Jan 2008 13:53:46 +0000 From: Nick Clifton Organization: Red Hat: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SL4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 03798903. User-Agent: Thunderbird 1.5.0.12 (X11/20071018) MIME-Version: 1.0 To: Yang <9mzzupj02@sneakemail.com> References: <3491-21133@sneakemail.com> <1198118266.26631.61.camel@vmx.home> <370-15657@sneakemail.com> In-Reply-To: <370-15657@sneakemail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) Cc: bug-binutils@gnu.org Subject: Re: Assertion failure in 2.18 X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jan 2008 13:53:16 -0000 Hi Yang, Thanks for the test case. The problem appears to be that the special assembler created section "*GAS 'reg' section*" is somehow being copied into the output file, when it really should not be. Please could you open a bug report at: http://sourceware.org/bugzilla/ Please include the test.S file, the assembler command line that gcc is using and a note of the toolchain that you are using (x86-64-linux-gnu). Please also mention that this bug still exists in the current mainline development sources. Cheers Nick From MAILER-DAEMON Fri Jan 04 10:27:02 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JAoRq-0001Su-O0 for mharc-bug-binutils@gnu.org; Fri, 04 Jan 2008 10:27:02 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAoRp-0001QF-4E for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:27:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAoRj-0001HF-RX for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:27:00 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAoRj-0001H5-P2 for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:26:55 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JAoRj-00067m-I4 for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:26:55 -0500 Received: (qmail 30568 invoked by uid 48); 4 Jan 2008 15:26:54 -0000 Date: 4 Jan 2008 15:26:54 -0000 Message-ID: <20080104152654.30567.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071216154119.5487.ambro@b4ever.net> References: <20071216154119.5487.ambro@b4ever.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5487] linking with dllwrap causes crash X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jan 2008 15:27:01 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-04 15:26 ------- Hi Ambroz, (Sorry for the long delay in replying to this PR - I had hoped that the original author of the problem patch might have responded). I am not greatly familiar wit this code, but it seems to me that there are two likely areas where the bug may exist. Therefore please could try building two linkers, one with each of the two patches I am going to upload, and see if one or both of them fixes the problem ? Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5487 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 04 10:30:28 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JAoVA-00037T-Hq for mharc-bug-binutils@gnu.org; Fri, 04 Jan 2008 10:30:28 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAoV9-00037D-KU for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:30:27 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAoV8-00036p-9X for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:30:27 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAoV8-00036m-49 for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:30:26 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JAoV7-0006pk-JK for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:30:25 -0500 Received: (qmail 31403 invoked by uid 48); 4 Jan 2008 15:30:23 -0000 Date: 4 Jan 2008 15:30:23 -0000 Message-ID: <20080104153023.31402.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071216154119.5487.ambro@b4ever.net> References: <20071216154119.5487.ambro@b4ever.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5487] linking with dllwrap causes crash X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jan 2008 15:30:27 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-04 15:30 ------- Created an attachment (id=2170) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2170&action=view) possible fix 1 -- http://sourceware.org/bugzilla/show_bug.cgi?id=5487 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 04 10:31:05 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JAoVl-0003MZ-OJ for mharc-bug-binutils@gnu.org; Fri, 04 Jan 2008 10:31:05 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAoVk-0003MU-Gj for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:31:04 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAoVi-0003MI-5F for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:31:03 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAoVh-0003ME-Tb for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:31:01 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JAoVh-0006wA-LS for bug-binutils@gnu.org; Fri, 04 Jan 2008 10:31:01 -0500 Received: (qmail 31825 invoked by uid 48); 4 Jan 2008 15:31:00 -0000 Date: 4 Jan 2008 15:31:00 -0000 Message-ID: <20080104153100.31824.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071216154119.5487.ambro@b4ever.net> References: <20071216154119.5487.ambro@b4ever.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5487] linking with dllwrap causes crash X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jan 2008 15:31:04 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-04 15:30 ------- Created an attachment (id=2171) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2171&action=view) Second possible workaround -- http://sourceware.org/bugzilla/show_bug.cgi?id=5487 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 04 13:42:30 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JArV0-000149-Ni for mharc-bug-binutils@gnu.org; Fri, 04 Jan 2008 13:42:30 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JArUy-000129-Nk for bug-binutils@gnu.org; Fri, 04 Jan 2008 13:42:28 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JArUx-00010C-8Y for bug-binutils@gnu.org; Fri, 04 Jan 2008 13:42:28 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JArUw-0000zy-Tq for bug-binutils@gnu.org; Fri, 04 Jan 2008 13:42:26 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JArUw-00060x-Pl for bug-binutils@gnu.org; Fri, 04 Jan 2008 13:42:26 -0500 Received: (qmail 23109 invoked by uid 48); 4 Jan 2008 18:42:25 -0000 Date: 4 Jan 2008 18:42:25 -0000 From: "hjl at lucon dot org" To: bug-binutils@gnu.org Message-ID: <20080104184223.5543.hjl@lucon.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5543] New: Assembler crashes on .set X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jan 2008 18:42:29 -0000 [hjl@gnu-6 gas]$ cat y.s .globl foo .set foo,(%eax) [hjl@gnu-6 gas]$ as --32 -o y.o y.s as: BFD (Linux/GNU Binutils) 2.18.50.0.4.20071229 assertion fail /net/gnu-13/export/linux/src/binutils/binutils/bfd/elf.c:6405 as: BFD (Linux/GNU Binutils) 2.18.50.0.4.20071229 internal error, aborting at /net/gnu-13/export/linux/src/binutils/binutils/bfd/elfcode.h line 221 in bfd_elf32_swap_symbol_out as: Please report this bug. Is ".set foo,(%eax)" valid? -- Summary: Assembler crashes on .set Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: normal Priority: P2 Component: gas AssignedTo: unassigned at sources dot redhat dot com ReportedBy: hjl at lucon dot org CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5543 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 04 15:29:34 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JAtAc-0000Ek-Cs for mharc-bug-binutils@gnu.org; Fri, 04 Jan 2008 15:29:34 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAtAb-0000EG-14 for bug-binutils@gnu.org; Fri, 04 Jan 2008 15:29:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAtAZ-0000Do-Js for bug-binutils@gnu.org; Fri, 04 Jan 2008 15:29:32 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAtAZ-0000Db-Ar for bug-binutils@gnu.org; Fri, 04 Jan 2008 15:29:31 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JAtAZ-0008TS-Ds for bug-binutils@gnu.org; Fri, 04 Jan 2008 15:29:31 -0500 Received: (qmail 10059 invoked by uid 48); 4 Jan 2008 20:29:29 -0000 Date: 4 Jan 2008 20:29:29 -0000 Message-ID: <20080104202929.10058.qmail@sourceware.org> From: "ambro at b4ever dot net" To: bug-binutils@gnu.org In-Reply-To: <20071216154119.5487.ambro@b4ever.net> References: <20071216154119.5487.ambro@b4ever.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5487] linking with dllwrap causes crash X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jan 2008 20:29:33 -0000 ------- Additional Comments From ambro at b4ever dot net 2008-01-04 20:29 ------- Well, I tried it, and the first patch didn't help, but the second fixed it! -- http://sourceware.org/bugzilla/show_bug.cgi?id=5487 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sat Jan 05 07:44:11 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JB8Nn-0000IZ-NQ for mharc-bug-binutils@gnu.org; Sat, 05 Jan 2008 07:44:11 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JB8Nm-0000IA-MO for bug-binutils@gnu.org; Sat, 05 Jan 2008 07:44:10 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JB8Nl-0000HY-4K for bug-binutils@gnu.org; Sat, 05 Jan 2008 07:44:10 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JB8Nk-0000HT-RA for bug-binutils@gnu.org; Sat, 05 Jan 2008 07:44:08 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JB8Nk-0006WU-NP for bug-binutils@gnu.org; Sat, 05 Jan 2008 07:44:08 -0500 Received: (qmail 689 invoked by uid 48); 5 Jan 2008 12:44:07 -0000 Date: 5 Jan 2008 12:44:07 -0000 From: "neundorf at kde dot org" To: bug-binutils@gnu.org Message-ID: <20080105124407.5546.neundorf@kde.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5546] New: add functionality to modify DT tags in ELF ways to binutils X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jan 2008 12:44:10 -0000 It would be nice if it would be possible using binutils (objcopy ?) to modify the RPATH/RUNPATH of an existing ELF file. More general this might be done as a function to modify arbitrary DT tags in ELF files, see the discussion here: http://sourceware.org/ml/binutils/2008-01/msg00026.html I'm using objcopy 2.17 on Linux on x86, but I think this actually doesn't matter here. Alex -- Summary: add functionality to modify DT tags in ELF ways to binutils Product: binutils Version: unspecified Status: NEW Severity: enhancement Priority: P2 Component: binutils AssignedTo: unassigned at sources dot redhat dot com ReportedBy: neundorf at kde dot org CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5546 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 06:05:00 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBpmu-00041Q-QJ for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 06:05:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBpmt-00040X-9E for bug-binutils@gnu.org; Mon, 07 Jan 2008 06:04:59 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBpmq-0003x8-AF for bug-binutils@gnu.org; Mon, 07 Jan 2008 06:04:58 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBpmq-0003x0-78 for bug-binutils@gnu.org; Mon, 07 Jan 2008 06:04:56 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBpmq-0007Nv-1V for bug-binutils@gnu.org; Mon, 07 Jan 2008 06:04:56 -0500 Received: (qmail 1741 invoked by uid 48); 7 Jan 2008 11:04:54 -0000 Date: 7 Jan 2008 11:04:54 -0000 Message-ID: <20080107110454.1740.qmail@sourceware.org> From: "timb at bluearc dot com" To: bug-binutils@gnu.org In-Reply-To: <20071114144319.5323.timb@bluearc.com> References: <20071114144319.5323.timb@bluearc.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5323] Assignment of grouped sections in linker script ignored X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 11:05:00 -0000 ------- Additional Comments From timb at bluearc dot com 2008-01-07 11:04 ------- Created an attachment (id=2175) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2175&action=view) Add --discard-section-groups option to ld The obvious change to unique_section_p didn't quite seem to be enough. Following a slightly less refined approach, here is a patch against 2.18 adding a --discard-section-groups option to ld that simply strips out all ELF section groups in relocatable output, the same as for executable output (no docs I'm afraid). I've just gone blundering in with my chainsaw, so there may be a few rough edges. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5323 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 11:35:00 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBuwG-0007TW-By for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 11:35:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBuwE-0007Rj-Cj for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:34:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBuwC-0007Pm-RK for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:34:57 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBuwC-0007Pa-HF for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:34:56 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBuwC-0000aj-9e for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:34:56 -0500 Received: (qmail 2971 invoked by uid 48); 7 Jan 2008 16:34:55 -0000 Date: 7 Jan 2008 16:34:55 -0000 Message-ID: <20080107163455.2970.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071216154119.5487.ambro@b4ever.net> References: <20071216154119.5487.ambro@b4ever.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5487] linking with dllwrap causes crash X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 16:34:58 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-07 16:34 ------- Hi Ambroz, OK, that helps a bit. Now, please could you put together a *small* testcase that reproduces the problem so that we can investigate why the patch to pe.em is broken ? Cheers Nick -- http://sourceware.org/bugzilla/show_bug.cgi?id=5487 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 11:44:14 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBv5C-0004Kj-HE for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 11:44:14 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBv5A-0004KZ-Vv for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:44:13 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBv59-0004KN-TS for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:44:12 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBv59-0004KK-R5 for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:44:11 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBv59-0002tV-Jx for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:44:11 -0500 Received: (qmail 6516 invoked by uid 48); 7 Jan 2008 16:44:10 -0000 Date: 7 Jan 2008 16:44:10 -0000 Message-ID: <20080107164410.6515.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071227192558.5523.j@uriah.heep.sax.de> References: <20071227192558.5523.j@uriah.heep.sax.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5523] Confusing warning: "expression dangerous with linker stubs" X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 16:44:13 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-07 16:44 ------- Created an attachment (id=2177) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2177&action=view) Remove the warning -- http://sourceware.org/bugzilla/show_bug.cgi?id=5523 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 11:45:52 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBv6m-00057u-OX for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 11:45:52 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBv6k-00057U-Bc for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:45:50 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBv6j-000575-08 for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:45:50 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBv6i-000572-OY for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:45:48 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBv6i-0003BR-GN for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:45:48 -0500 Received: (qmail 8342 invoked by uid 48); 7 Jan 2008 16:45:47 -0000 Date: 7 Jan 2008 16:45:47 -0000 Message-ID: <20080107164547.8341.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071227192558.5523.j@uriah.heep.sax.de> References: <20071227192558.5523.j@uriah.heep.sax.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5523] Confusing warning: "expression dangerous with linker stubs" X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 16:45:50 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-07 16:45 ------- Hi Joerg, Please could you try out the uploaded patch and let me know if it resolves the problem for you ? Also - would it be possible for you to supply a small assembler source file that demonstrates this problem ? This could be turned in a gas test case to make sure that the problem remains fixed. Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5523 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 11:51:21 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBvC5-00036Q-Dq for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 11:51:21 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBvC1-00031h-S1 for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:51:18 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBvBz-0002yh-Mj for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:51:16 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBvBz-0002yL-Cg for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:51:15 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBvBz-0004pa-0t for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:51:15 -0500 Received: (qmail 11794 invoked by uid 48); 7 Jan 2008 16:51:13 -0000 Date: 7 Jan 2008 16:51:13 -0000 Message-ID: <20080107165113.11793.qmail@sourceware.org> From: "hjl at lucon dot org" To: bug-binutils@gnu.org In-Reply-To: <20071225003803.5522.SebastianR@gmx.de> References: <20071225003803.5522.SebastianR@gmx.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5522] Section contents partially overwritten with zero X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 16:51:19 -0000 ------- Additional Comments From hjl at lucon dot org 2008-01-07 16:51 ------- Fixed by http://sourceware.org/ml/binutils/2007-12/msg00152.html -- What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5522 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 11:52:56 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBvDc-0005cI-KE for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 11:52:56 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBvDb-0005ao-N4 for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:52:55 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBvDa-0005XT-9T for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:52:55 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBvDa-0005XJ-5w for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:52:54 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBvDZ-0005Ce-SA for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:52:54 -0500 Received: (qmail 12561 invoked by uid 48); 7 Jan 2008 16:52:52 -0000 Date: 7 Jan 2008 16:52:52 -0000 Message-ID: <20080107165252.12560.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071228214227.5524.danglin@gcc.gnu.org> References: <20071228214227.5524.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5524] ld: I/O error, file "/xxx/gnu/binutils/objdir/opcodes/../bfd/.libs/libbfd.so": No such file or directory X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 16:52:55 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-07 16:52 ------- Created an attachment (id=2178) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2178&action=view) Use the correct file extension for HPUX shared libraries -- http://sourceware.org/bugzilla/show_bug.cgi?id=5524 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 11:54:35 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBvFD-0007C8-LH for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 11:54:35 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBvFC-0007BC-NG for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:54:34 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBvFB-00079t-Ck for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:54:34 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBvFB-00079g-5t for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:54:33 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBvFA-0005Xp-TQ for bug-binutils@gnu.org; Mon, 07 Jan 2008 11:54:33 -0500 Received: (qmail 13132 invoked by uid 48); 7 Jan 2008 16:54:32 -0000 Date: 7 Jan 2008 16:54:32 -0000 Message-ID: <20080107165432.13131.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071228214227.5524.danglin@gcc.gnu.org> References: <20071228214227.5524.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5524] ld: I/O error, file "/xxx/gnu/binutils/objdir/opcodes/../bfd/.libs/libbfd.so": No such file or directory X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 16:54:35 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-07 16:54 ------- Hi Dave, Please could you try out the uploaded patch and let me know if it works for you ? (Obvioulsy you will need to regenerate opcodes/configure as well). There appears to be several different configure variables we can test for HPUX OSes, but I based this patch on similar code in ld/configure.in. Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5524 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 12:16:19 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBvaF-0007HQ-Fr for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 12:16:19 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBvaD-0007Gf-28 for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:16:17 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBvaB-0007Fj-1E for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:16:16 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBvaA-0007Fd-MO for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:16:14 -0500 Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JBvaA-0001rG-KC for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:16:14 -0500 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m07HG0cp016990; Mon, 7 Jan 2008 12:16:00 -0500 Received: from pobox.fab.redhat.com (pobox.fab.redhat.com [10.33.63.12]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m07HFml7011072; Mon, 7 Jan 2008 12:15:49 -0500 Received: from [10.32.4.97] (vpn-4-97.str.redhat.com [10.32.4.97]) by pobox.fab.redhat.com (8.13.1/8.13.1) with ESMTP id m07HFkZS029148; Mon, 7 Jan 2008 12:15:47 -0500 Message-ID: <47825E7A.2020205@redhat.com> Date: Mon, 07 Jan 2008 17:16:42 +0000 From: Nick Clifton Organization: Red Hat: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SL4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 03798903. User-Agent: Thunderbird 1.5.0.12 (X11/20071018) MIME-Version: 1.0 To: Yevgeniy Litvinenko References: <919113802.20071230130723@astana.oilfield.slb.com> In-Reply-To: <919113802.20071230130723@astana.oilfield.slb.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) Cc: bug-binutils@gnu.org Subject: Re: binutils-2.18 build error X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 17:16:17 -0000 Hi Yevgeniy, > libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g > -O2 -o .libs/ld-new ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o > ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o sha1.o > eelf_i386_ldso.o eelf_i386.o eelf_x86_64.o /usr/local/lib/libiconv.so > ../bfd/.libs/libbfd.so ../libiberty/libiberty.a ./../intl/libintl.a > -R/usr/local/lib > > /usr/local/lib/gcc/i686-gnu-solaris2.10/4.2.2/../../../../i686-gnu-solaris2.10/bin/ld:ldscripts/elf_i386.xc:77: > syntax error Weird. I do not see how this error can be happening. You are correct in that the "CONSTANT (MAXPAGESIZE)" syntax is not supported by the 2.17 linker, but that linker should not be seeing this syntax at all. The elf_i386.sc file is a linker script for the 2.18 linker that you are building - it should never have to be parsed by the 2.17 linker. As a workaround you can edit the ld/emulparams/elf32_sparc.sh file in your 2.18 sources and change the definitions of MAXPAGESIZE and COMMONPAGESIZE back to 0x10000 and 0x2000 respectively. Cheers Nick From MAILER-DAEMON Mon Jan 07 12:53:46 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBwAU-0003OI-Ok for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 12:53:46 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBwAT-0003Km-53 for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:53:45 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBwAO-0003Bb-Dz for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:53:44 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBwAO-0003BR-AF for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:53:40 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBwAO-0002Zq-5n for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:53:40 -0500 Received: (qmail 20395 invoked by uid 48); 7 Jan 2008 17:53:39 -0000 Date: 7 Jan 2008 17:53:39 -0000 Message-ID: <20080107175339.20394.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102210801.5535.darkjames@darkjames.ath.cx> References: <20080102210801.5535.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5535] [bfd] vms-alpha segvs, in vms_close_and_cleanup() when we try to load invalid file using it. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 17:53:45 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-07 17:53 ------- Created an attachment (id=2179) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2179&action=view) Test for the presence of a vms private data structure -- http://sourceware.org/bugzilla/show_bug.cgi?id=5535 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 12:54:14 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JBwAv-000455-Sx for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 12:54:13 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBwAu-00043L-JE for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:54:12 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBwAt-00041O-5W for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:54:12 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBwAt-00041I-2f for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:54:11 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JBwAs-0002gA-Pd for bug-binutils@gnu.org; Mon, 07 Jan 2008 12:54:11 -0500 Received: (qmail 20498 invoked by uid 48); 7 Jan 2008 17:54:09 -0000 Date: 7 Jan 2008 17:54:09 -0000 Message-ID: <20080107175409.20497.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102210801.5535.darkjames@darkjames.ath.cx> References: <20080102210801.5535.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5535] [bfd] vms-alpha segvs, in vms_close_and_cleanup() when we try to load invalid file using it. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 17:54:12 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-07 17:54 ------- Hi Jakub, I agree with your first suggested patch, so I am going to apply the uploaded version of it. I am not sure about the second change (to bfd_close). I agree that it looks good, but I have a nagging suspicion that there might be a case where it is wrong. Since it is not needed to fix the bug, I am going to omit it. Cheers Nick bfd/ChangeLog 2008-01-07 Nick Clifton PR binutils/5535 * vms.c (vms_close_and_cleanup): Check for the presence of a vms_private_data_struct before examining any of its fields. -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5535 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 07 17:32:33 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JC0WH-0004R1-Fl for mharc-bug-binutils@gnu.org; Mon, 07 Jan 2008 17:32:33 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JC0WF-0004Qr-V4 for bug-binutils@gnu.org; Mon, 07 Jan 2008 17:32:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JC0WD-0004QJ-FN for bug-binutils@gnu.org; Mon, 07 Jan 2008 17:32:30 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JC0WD-0004QG-Am for bug-binutils@gnu.org; Mon, 07 Jan 2008 17:32:29 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JC0WC-00080X-Qh for bug-binutils@gnu.org; Mon, 07 Jan 2008 17:32:29 -0500 Received: (qmail 2357 invoked by uid 48); 7 Jan 2008 22:32:27 -0000 Date: 7 Jan 2008 22:32:27 -0000 Message-ID: <20080107223227.2356.qmail@sourceware.org> From: "SebastianR at gmx dot de" To: bug-binutils@gnu.org In-Reply-To: <20071225003803.5522.SebastianR@gmx.de> References: <20071225003803.5522.SebastianR@gmx.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5522] Section contents partially overwritten with zero X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2008 22:32:32 -0000 ------- Additional Comments From SebastianR at gmx dot de 2008-01-07 22:32 ------- Thanks a lot! -- http://sourceware.org/bugzilla/show_bug.cgi?id=5522 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 03:39:24 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JC9zY-00026d-8G for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 03:39:24 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JC9zW-00025u-HV for bug-binutils@gnu.org; Tue, 08 Jan 2008 03:39:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JC9zU-00025Z-Pn for bug-binutils@gnu.org; Tue, 08 Jan 2008 03:39:22 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JC9zU-00025R-KD for bug-binutils@gnu.org; Tue, 08 Jan 2008 03:39:20 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JC9zU-00024b-BL for bug-binutils@gnu.org; Tue, 08 Jan 2008 03:39:20 -0500 Received: (qmail 12802 invoked by uid 48); 8 Jan 2008 08:39:19 -0000 Date: 8 Jan 2008 08:39:19 -0000 Message-ID: <20080108083919.12801.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071114025426.5322.danglin@gcc.gnu.org> References: <20071114025426.5322.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5322] ERROR: tcl error sourcing /home/dave/binutils-2.17.50/src/gas/testsuite/gas/all/gas.exp X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 08:39:22 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-08 08:39 ------- Patch applied -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5322 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 04:05:28 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCAOm-0002UI-LY for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 04:05:28 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCAOl-0002RI-5n for bug-binutils@gnu.org; Tue, 08 Jan 2008 04:05:27 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCAOi-0002Mv-Kb for bug-binutils@gnu.org; Tue, 08 Jan 2008 04:05:26 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCAOi-0002MW-CT for bug-binutils@gnu.org; Tue, 08 Jan 2008 04:05:24 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCAOh-0000xx-WF for bug-binutils@gnu.org; Tue, 08 Jan 2008 04:05:24 -0500 Received: (qmail 9898 invoked by uid 48); 8 Jan 2008 09:05:20 -0000 Date: 8 Jan 2008 09:05:20 -0000 Message-ID: <20080108090520.9897.qmail@sourceware.org> From: "Kai dot Tietz at onevision dot com" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 09:05:27 -0000 ------- Additional Comments From Kai dot Tietz at onevision dot com 2008-01-08 09:05 ------- Created an attachment (id=2181) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2181&action=view) Allow colon, underscore, and path seperators for not quoted strings I patched the token lexer to allow typical file name characters as ':', '_', '/', and '\\' as secondary token characters in rclex.c. -- What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at sources dot |Kai dot Tietz at onevision |redhat dot com |dot com Status|NEW |ASSIGNED http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 08:16:14 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCEJR-000183-Qh for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 08:16:13 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCEJO-000152-0v for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:16:10 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCEJK-00012Y-8x for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:16:06 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCEJK-00012K-3g for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:16:06 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCEJJ-0005mB-P9 for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:16:06 -0500 Received: (qmail 6856 invoked by uid 48); 8 Jan 2008 13:16:04 -0000 Date: 8 Jan 2008 13:16:04 -0000 From: "markus dot heigl at fme dot fujitsu dot com" To: bug-binutils@gnu.org Message-ID: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5552] New: Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 13:16:12 -0000 While porting Linux to the Fujitsu RISC I observed that pointers within a structure were not initialized with the right addresses. After some investigation it boiled down to the linker. Following testcase shows the problem. foo.s: .globl foo .data .p2align 2 .type foo, @object .size foo, 8 foo: .word 286331153 .word foo+4 .word foo+4 .word -1 .globl bar .data .p2align 2 .type bar, @object .size bar, 40 bar: .word 286331153 .word bar+4 .word bar+4 .word -1 assembled with: bash-2.05b$ fr30-elf-as foo.s -o foo.o and linked with: bash-2.05b$ fr30-elf-ld -t -stats foo.o fr30-elf-ld: mode elf32fr30 foo.o fr30-elf-ld: warning: cannot find entry symbol _start; defaulting to 00010000 What I would expect is: a2.out 00001000: 11111111 foo 00001004: 00010004 00001008: 00010004 0000100c: ffffffff 00001010: 11111111 bar 00001014: 00010014 < 00001018: 00010014 < 0000101c: ffffffff But what I get is: a.out 00001000: 11111111 foo 00001004: 00010004 00001008: 00010004 0000100c: ffffffff 00001010: 11111111 bar 00001014: 00010024 < 00001018: 00010024 < 0000101c: ffffffff -- Summary: Wrong data address after linking Product: binutils Version: 2.18 Status: NEW Severity: normal Priority: P2 Component: ld AssignedTo: unassigned at sources dot redhat dot com ReportedBy: markus dot heigl at fme dot fujitsu dot com CC: bug-binutils at gnu dot org GCC host triplet: i686-pc-linux-gnu GCC target triplet: fr30-unknown-elf http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 08:17:29 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCEKf-00022d-Ct for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 08:17:29 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCEKe-00021k-3J for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:17:28 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCEKc-000214-Ha for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:17:27 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCEKc-00020w-Ak for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:17:26 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCEKc-00060U-23 for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:17:26 -0500 Received: (qmail 7138 invoked by uid 48); 8 Jan 2008 13:17:25 -0000 Date: 8 Jan 2008 13:17:25 -0000 Message-ID: <20080108131725.7137.qmail@sourceware.org> From: "markus dot heigl at fme dot fujitsu dot com" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 13:17:28 -0000 ------- Additional Comments From markus dot heigl at fme dot fujitsu dot com 2008-01-08 13:17 ------- Created an attachment (id=2183) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2183&action=view) testcase -- http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 08:18:09 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCELJ-0002ie-OE for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 08:18:09 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCELH-0002gW-Pd for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:18:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCELG-0002ea-CP for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:18:07 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCELG-0002eK-2t for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:18:06 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCELF-0006BG-S5 for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:18:06 -0500 Received: (qmail 7251 invoked by uid 48); 8 Jan 2008 13:18:04 -0000 Date: 8 Jan 2008 13:18:04 -0000 Message-ID: <20080108131804.7250.qmail@sourceware.org> From: "markus dot heigl at fme dot fujitsu dot com" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 13:18:08 -0000 ------- Additional Comments From markus dot heigl at fme dot fujitsu dot com 2008-01-08 13:18 ------- Created an attachment (id=2184) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2184&action=view) assembler output -- http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 08:19:03 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCEMB-00041E-9u for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 08:19:03 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCEM9-0003zk-WA for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:19:02 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCEM8-0003xs-En for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:19:01 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCEM8-0003xi-4y for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:19:00 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCEM7-0006M6-Tj for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:19:00 -0500 Received: (qmail 7413 invoked by uid 48); 8 Jan 2008 13:18:59 -0000 Date: 8 Jan 2008 13:18:59 -0000 Message-ID: <20080108131859.7412.qmail@sourceware.org> From: "markus dot heigl at fme dot fujitsu dot com" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 13:19:02 -0000 ------- Additional Comments From markus dot heigl at fme dot fujitsu dot com 2008-01-08 13:18 ------- Created an attachment (id=2185) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2185&action=view) linker output -- http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 08:31:40 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCEYO-0006au-MQ for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 08:31:40 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCEYM-0006aC-Iq for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:31:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCEYK-0006ZY-Us for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:31:38 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCEYK-0006ZP-IO for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:31:36 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCEYK-000097-As for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:31:36 -0500 Received: (qmail 12528 invoked by uid 48); 8 Jan 2008 13:31:35 -0000 Date: 8 Jan 2008 13:31:35 -0000 Message-ID: <20080108133135.12527.qmail@sourceware.org> From: "ambro at b4ever dot net" To: bug-binutils@gnu.org In-Reply-To: <20071216154119.5487.ambro@b4ever.net> References: <20071216154119.5487.ambro@b4ever.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5487] linking with dllwrap causes crash X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 13:31:39 -0000 ------- Additional Comments From ambro at b4ever dot net 2008-01-08 13:31 ------- Created an attachment (id=2186) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2186&action=view) test case for the crash Well, here it is. It seems to crash in vsnprintf inside libfoo.c. Crashes both in WinXP and Wine. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5487 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 08:44:20 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCEke-0004Rq-AZ for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 08:44:20 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCEkb-0004NK-Jo for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:44:17 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCEkY-0004Jz-Ng for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:44:16 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCEkY-0004Jr-B0 for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:44:14 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCEkX-0002kg-Qx for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:44:14 -0500 Received: (qmail 18519 invoked by uid 48); 8 Jan 2008 13:44:12 -0000 Date: 8 Jan 2008 13:44:12 -0000 Message-ID: <20080108134412.18518.qmail@sourceware.org> From: "markus dot heigl at fme dot fujitsu dot com" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 13:44:18 -0000 ------- Additional Comments From markus dot heigl at fme dot fujitsu dot com 2008-01-08 13:44 ------- For a2.out I removed h->root.u.def.value *** /fme/users/mhaigl/essen-gcc/binutils-2.18/bfd/elf-bfd.h 2008-01-08 14:36:57.000000000 +0100 --- /fme/users/mhaigl/cross/binutils-2.18/bfd/elf-bfd.h 2007-08-06 21:59:22.000000000 +0200 *************** extern bfd_boolean _sh_elf_set_mach_from *** 2096,2102 **** library. */ \ unresolved_reloc = TRUE; \ else \ ! relocation = ( \ + sec->output_section->vma \ + sec->output_offset); \ } \ --- 2096,2102 ---- library. */ \ unresolved_reloc = TRUE; \ else \ ! relocation = (h->root.u.def.value \ + sec->output_section->vma \ + sec->output_offset); \ } \ This helped to produce the right adresses for the testcase, but altough I do not know much about the linker I am pretty sure that this will break almost everything else. So this is only a hint where it goes wrong. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 08:55:27 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCEvO-0002Jb-SN for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 08:55:26 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCEvN-0002IO-1M for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:55:25 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCEvL-0002IC-Ij for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:55:24 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCEvL-0002I9-Ep for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:55:23 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCEvL-0005vO-3J for bug-binutils@gnu.org; Tue, 08 Jan 2008 08:55:23 -0500 Received: (qmail 23724 invoked by uid 48); 8 Jan 2008 13:55:22 -0000 Date: 8 Jan 2008 13:55:22 -0000 Message-ID: <20080108135522.23723.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 13:55:25 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-08 13:55 ------- The assembler output is already broken. foo.o: file format elf32-fr30 RELOCATION RECORDS FOR [.data]: OFFSET TYPE VALUE 00000004 R_FR30_32 foo+0x00000004 00000008 R_FR30_32 foo+0x00000004 00000014 R_FR30_32 bar+0x00000014 00000018 R_FR30_32 bar+0x00000014 ^^ -- http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 12:17:57 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCI5N-0000Br-Ey for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 12:17:57 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCI5L-0000Ao-6h for bug-binutils@gnu.org; Tue, 08 Jan 2008 12:17:55 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCI5G-00009d-KT for bug-binutils@gnu.org; Tue, 08 Jan 2008 12:17:54 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCI5G-00009Y-GE for bug-binutils@gnu.org; Tue, 08 Jan 2008 12:17:50 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCI5G-0001jw-7d for bug-binutils@gnu.org; Tue, 08 Jan 2008 12:17:50 -0500 Received: (qmail 28305 invoked by uid 48); 8 Jan 2008 17:17:49 -0000 Date: 8 Jan 2008 17:17:49 -0000 Message-ID: <20080108171749.28304.qmail@sourceware.org> From: "markus dot heigl at fme dot fujitsu dot com" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 17:17:55 -0000 ------- Additional Comments From markus dot heigl at fme dot fujitsu dot com 2008-01-08 17:17 ------- So should this one be moved to gas or should I open a new one and we close this bug? -- http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 18:08:23 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCNYV-0007Np-QD for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 18:08:23 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCNYT-0007LV-Sz for bug-binutils@gnu.org; Tue, 08 Jan 2008 18:08:21 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCNYS-0007JQ-4z for bug-binutils@gnu.org; Tue, 08 Jan 2008 18:08:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCNYR-0007JE-Vw for bug-binutils@gnu.org; Tue, 08 Jan 2008 18:08:20 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCNYR-0000QW-Ml for bug-binutils@gnu.org; Tue, 08 Jan 2008 18:08:19 -0500 Received: (qmail 8500 invoked by uid 48); 8 Jan 2008 23:08:18 -0000 Date: 8 Jan 2008 23:08:18 -0000 Message-ID: <20080108230818.8499.qmail@sourceware.org> From: "darkjames at darkjames dot ath dot cx" To: bug-binutils@gnu.org In-Reply-To: <20080102213231.5536.darkjames@darkjames.ath.cx> References: <20080102213231.5536.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5536] Multiple meleaks after bfd_arch_list() calls X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 23:08:22 -0000 ------- Additional Comments From darkjames at darkjames dot ath dot cx 2008-01-08 23:08 ------- Yes, sure, it's nothing _very_ important, but I don't know why it shouldn't be fixed. In list_supported_targets () [which is also used hardly ever] we free memory after bfd_target_list () call I attach patch to fix these memleaks, and change a little list_matching_formats () I think it's better. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5536 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 18:12:55 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCNcs-00032O-58 for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 18:12:54 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCNco-0002zA-EF for bug-binutils@gnu.org; Tue, 08 Jan 2008 18:12:50 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCNcl-0002wz-PE for bug-binutils@gnu.org; Tue, 08 Jan 2008 18:12:49 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCNcl-0002ww-6K for bug-binutils@gnu.org; Tue, 08 Jan 2008 18:12:47 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCNcl-0001q5-1r for bug-binutils@gnu.org; Tue, 08 Jan 2008 18:12:47 -0500 Received: (qmail 9566 invoked by uid 48); 8 Jan 2008 23:12:46 -0000 Date: 8 Jan 2008 23:12:46 -0000 Message-ID: <20080108231246.9565.qmail@sourceware.org> From: "darkjames at darkjames dot ath dot cx" To: bug-binutils@gnu.org In-Reply-To: <20080102213231.5536.darkjames@darkjames.ath.cx> References: <20080102213231.5536.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5536] Multiple meleaks after bfd_arch_list() calls X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 23:12:51 -0000 ------- Additional Comments From darkjames at darkjames dot ath dot cx 2008-01-08 23:12 ------- Created an attachment (id=2188) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2188&action=view) free memory allocated by bfd_arch_list () -- http://sourceware.org/bugzilla/show_bug.cgi?id=5536 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 22:06:21 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCRGn-0003zX-Ly for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:21 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCRGm-0003w9-0J for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:20 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCRGk-0003sf-If for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:19 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCRGk-0003sW-DC for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:18 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCRGj-0006Fn-SH for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:18 -0500 Received: (qmail 1763 invoked by uid 48); 9 Jan 2008 03:06:16 -0000 Date: 9 Jan 2008 03:06:16 -0000 From: "ismail at pardus dot org dot tr" To: bug-binutils@gnu.org Message-ID: <20080109030615.5556.ismail@pardus.org.tr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5556] New: objcopy -O binary produces huge invalid file X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 03:06:20 -0000 Attached pre_stage2.exec is a small prebuilt file from grub 0.97, and grub is trying to do objcopy -O binary pre_stage2.exec pre_stage2 and this produces a huge invalid file : [~]> ls -al pre_stage2.exec -rwxr-xr-x 1 cartman users 138718 Oca 9 04:53 pre_stage2.exec so this is 138k [~]> objcopy -O binary pre_stage2.exec pre_stage2 [~]> ls -al pre_stage2 -rwxr-xr-x 1 cartman users 134479576 Oca 9 05:05 pre_stage2 Output is 134MB , whoa. Now lets see what kinda file is this : [~]> file pre_stage2 pre_stage2: data Strip doesn't recognize it either: [~]> strip pre_stage2 strip:pre_stage2: File format not recognized Using, [~]> objcopy -V GNU objcopy (Pardus Linux) 2.18.50.0.3.20071102 Copyright 2007 Free Software Foundation, Inc. This program is free software; you may redistribute it under the terms of the GNU General Public License version 3 or (at your option) any later version. This program has absolutely no warranty. Also reproduced with vanilla CVS head as of today. -- Summary: objcopy -O binary produces huge invalid file Product: binutils Version: 2.18 Status: NEW Severity: normal Priority: P2 Component: binutils AssignedTo: unassigned at sources dot redhat dot com ReportedBy: ismail at pardus dot org dot tr CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5556 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 22:06:46 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCRHC-0004CR-Pv for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:46 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCRHB-0004C4-Co for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:45 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCRH9-0004BQ-NZ for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:44 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCRH9-0004BN-Jl for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:43 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCRH9-0006NT-40 for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:06:43 -0500 Received: (qmail 1817 invoked by uid 48); 9 Jan 2008 03:06:42 -0000 Date: 9 Jan 2008 03:06:42 -0000 Message-ID: <20080109030642.1816.qmail@sourceware.org> From: "ismail at pardus dot org dot tr" To: bug-binutils@gnu.org In-Reply-To: <20080109030615.5556.ismail@pardus.org.tr> References: <20080109030615.5556.ismail@pardus.org.tr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5556] objcopy -O binary produces huge invalid file X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 03:06:45 -0000 ------- Additional Comments From ismail at pardus dot org dot tr 2008-01-09 03:06 ------- Created an attachment (id=2189) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2189&action=view) Sample file to reproduce the problem -- http://sourceware.org/bugzilla/show_bug.cgi?id=5556 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 22:08:12 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCRIa-0004X5-Bw for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 22:08:12 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCRIZ-0004Wm-2b for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:08:11 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCRIX-0004WW-M4 for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:08:10 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCRIX-0004WT-KM for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:08:09 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCRIW-0006l4-SC for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:08:09 -0500 Received: (qmail 9538 invoked by uid 48); 9 Jan 2008 03:08:07 -0000 Date: 9 Jan 2008 03:08:07 -0000 Message-ID: <20080109030807.9537.qmail@sourceware.org> From: "ismail at pardus dot org dot tr" To: bug-binutils@gnu.org In-Reply-To: <20080109030615.5556.ismail@pardus.org.tr> References: <20080109030615.5556.ismail@pardus.org.tr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5556] objcopy -O binary produces huge invalid file X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 03:08:11 -0000 ------- Additional Comments From ismail at pardus dot org dot tr 2008-01-09 03:08 ------- Same problem can be reproduced with binutils 2.16.1 too. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5556 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 22:25:43 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCRZX-0003Ex-Cm for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 22:25:43 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCRZV-0003D1-1o for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:25:41 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCRZT-0003BL-GT for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:25:40 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCRZT-0003B8-AI for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:25:39 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCRZS-0001uj-V2 for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:25:39 -0500 Received: (qmail 15211 invoked by uid 48); 9 Jan 2008 03:25:38 -0000 Date: 9 Jan 2008 03:25:38 -0000 Message-ID: <20080109032538.15210.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080109030615.5556.ismail@pardus.org.tr> References: <20080109030615.5556.ismail@pardus.org.tr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5556] objcopy -O binary produces huge invalid file X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 03:25:41 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-09 03:25 ------- Not a bug. pre_stage2.exec has these PT_LOAD headers: Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align LOAD 0x0000c0 0x00008200 0x00008200 0x1d0aa 0x283a4 RWE 0x20 LOAD 0x01d16c 0x080480b4 0x080480b4 0x00024 0x00024 R 0x4 So expect this to translate to a huge binary, 0x80480b4-0x8200+0x24 in size. -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=5556 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 22:29:09 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCRcq-00057P-NM for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 22:29:08 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCRco-00055e-MJ for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:29:06 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCRcm-00054G-Md for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:29:05 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCRcm-00053x-74 for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:29:04 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCRcl-0002ex-MC for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:29:04 -0500 Received: (qmail 16281 invoked by uid 48); 9 Jan 2008 03:29:02 -0000 Date: 9 Jan 2008 03:29:02 -0000 Message-ID: <20080109032902.16280.qmail@sourceware.org> From: "ismail at pardus dot org dot tr" To: bug-binutils@gnu.org In-Reply-To: <20080109030615.5556.ismail@pardus.org.tr> References: <20080109030615.5556.ismail@pardus.org.tr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5556] objcopy -O binary produces huge invalid file X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 03:29:07 -0000 ------- Additional Comments From ismail at pardus dot org dot tr 2008-01-09 03:29 ------- Any idea how to debug this further? This binary is produced with gcc 4.3 trunk and this might be a gcc 4.3 problem. Thanks, ismail -- http://sourceware.org/bugzilla/show_bug.cgi?id=5556 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 22:51:47 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCRyl-0002hr-82 for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 22:51:47 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCRyj-0002gn-2h for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:51:45 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCRyh-0002fx-6L for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:51:44 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCRyg-0002fu-Vr for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:51:43 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCRyg-0007b2-HH for bug-binutils@gnu.org; Tue, 08 Jan 2008 22:51:42 -0500 Received: (qmail 23623 invoked by uid 48); 9 Jan 2008 03:51:41 -0000 Date: 9 Jan 2008 03:51:41 -0000 Message-ID: <20080109035141.23622.qmail@sourceware.org> From: "ismail at pardus dot org dot tr" To: bug-binutils@gnu.org In-Reply-To: <20080109030615.5556.ismail@pardus.org.tr> References: <20080109030615.5556.ismail@pardus.org.tr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5556] objcopy -O binary produces huge invalid file X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 03:51:45 -0000 ------- Additional Comments From ismail at pardus dot org dot tr 2008-01-09 03:51 ------- Adding -Wl,--build-id=none to linker flags fixed the issue, thanks. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5556 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 08 23:25:09 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCSV3-00083f-M3 for mharc-bug-binutils@gnu.org; Tue, 08 Jan 2008 23:25:09 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCSV2-00083F-1q for bug-binutils@gnu.org; Tue, 08 Jan 2008 23:25:08 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCSV1-00082J-5u for bug-binutils@gnu.org; Tue, 08 Jan 2008 23:25:07 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCSV1-000825-0e for bug-binutils@gnu.org; Tue, 08 Jan 2008 23:25:07 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCSV0-0005aJ-In for bug-binutils@gnu.org; Tue, 08 Jan 2008 23:25:06 -0500 Received: (qmail 4948 invoked by uid 48); 9 Jan 2008 04:25:05 -0000 Date: 9 Jan 2008 04:25:05 -0000 Message-ID: <20080109042505.4947.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 04:25:08 -0000 -- What |Removed |Added ---------------------------------------------------------------------------- Component|ld |gas http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 04:40:41 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCXQP-0007wH-CT for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 04:40:41 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCXQN-0007t8-3B for bug-binutils@gnu.org; Wed, 09 Jan 2008 04:40:39 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCXQL-0007r8-72 for bug-binutils@gnu.org; Wed, 09 Jan 2008 04:40:38 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCXQK-0007qd-Ch for bug-binutils@gnu.org; Wed, 09 Jan 2008 04:40:36 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCXQK-0006Yg-Cb for bug-binutils@gnu.org; Wed, 09 Jan 2008 04:40:36 -0500 Received: (qmail 15427 invoked by uid 48); 9 Jan 2008 09:40:33 -0000 Date: 9 Jan 2008 09:40:33 -0000 Message-ID: <20080109094033.15426.qmail@sourceware.org> From: "rsandifo at nildram dot co dot uk" To: bug-binutils@gnu.org In-Reply-To: <20071229025322.5526.danglin@gcc.gnu.org> References: <20071229025322.5526.danglin@gcc.gnu.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5526] eh support is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 09:40:39 -0000 ------- Additional Comments From rsandifo at nildram dot co dot uk 2008-01-09 09:40 ------- Patch applied. Dave confirms it fixes both problems. -- What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 05:25:32 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCY7n-0006dK-NO for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 05:25:31 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCY7k-0006bE-JS for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:25:28 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCY7f-0006Vb-CJ for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:25:26 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCY7e-0006VC-Ha for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:25:23 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCY77-0007A5-56 for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:25:22 -0500 Received: (qmail 3480 invoked by uid 48); 9 Jan 2008 10:24:36 -0000 Date: 9 Jan 2008 10:24:36 -0000 Message-ID: <20080109102436.3479.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102154300.5533.drow@sources.redhat.com> References: <20080102154300.5533.drow@sources.redhat.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5533] ld -e (--entry) is too quiet on bad symbol names X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 10:25:29 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-09 10:24 ------- Hi Daniel, Do you have a test case that reproduces this problem ? I tried the following: % cat fred.s .global foo .global bar foo: nop bar: nop % as fred.s -o fred.o % ld -e does-not-exist fred.o ld: warning: cannot find entry symbol does-not-exist; defaulting to 0000000000008000 ie a warning message *was* produced. This was with an arm-eabi toolchain built from today's sources on a 64-bit host, so maybe one of these factors is connected with the generation of the warning message. Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5533 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 05:41:28 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCYNE-0003bx-2T for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 05:41:28 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCYNA-0003aF-Cw for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:41:24 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCYN5-0003Wd-1R for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:41:22 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCYN4-0003Vn-2n for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:41:18 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCYN3-0002mX-1A for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:41:17 -0500 Received: (qmail 11959 invoked by uid 48); 9 Jan 2008 10:41:04 -0000 Date: 9 Jan 2008 10:41:04 -0000 Message-ID: <20080109104104.11958.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102213231.5536.darkjames@darkjames.ath.cx> References: <20080102213231.5536.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5536] Multiple meleaks after bfd_arch_list() calls X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 10:41:24 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-09 10:41 ------- Created an attachment (id=2190) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2190&action=view) Revised memory leak patch -- http://sourceware.org/bugzilla/show_bug.cgi?id=5536 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 05:44:37 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCYQG-000540-MK for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 05:44:36 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCYQF-00053S-5G for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:44:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCYQ7-0004zI-Pk for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:44:32 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCYQ7-0004z5-J5 for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:44:27 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCYQ4-0003Pd-TH for bug-binutils@gnu.org; Wed, 09 Jan 2008 05:44:27 -0500 Received: (qmail 12453 invoked by uid 48); 9 Jan 2008 10:44:20 -0000 Date: 9 Jan 2008 10:44:20 -0000 Message-ID: <20080109104420.12452.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102213231.5536.darkjames@darkjames.ath.cx> References: <20080102213231.5536.darkjames@darkjames.ath.cx> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5536] Multiple meleaks after bfd_arch_list() calls X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 10:44:35 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-09 10:44 ------- Hi Jakub, Hi Andreas, I agree that there is no reason why we should not fix the leaks, so I have gone ahead and applied a slight variant of Jakub's patch (uploaded). The changes I made were: * Omitted the change to list_matching_formats(). There was no need for it and any decent compiler will produce the same code either way. * Moved the architecture walking variable ('arch') in the set_endianess() functions inside the if-statement. * Added a ChangeLog entry. Cheers Nick binutils/ChangeLog 2008-01-09 Jakub Zawadzki PR binutils/55326 * bucomm.c (list_supported_architectures): Free architecture list after use. * windres.c (set_endianess): Likewise. * windmc.c (set_endianess): Likewise. -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5536 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 06:15:32 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCYuB-0005Ru-Jy for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 06:15:31 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCYu7-0005R1-BO for bug-binutils@gnu.org; Wed, 09 Jan 2008 06:15:27 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCYu1-0005Pn-Vh for bug-binutils@gnu.org; Wed, 09 Jan 2008 06:15:26 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCYu1-0005Pj-PA for bug-binutils@gnu.org; Wed, 09 Jan 2008 06:15:21 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCYu0-0001ES-TT for bug-binutils@gnu.org; Wed, 09 Jan 2008 06:15:21 -0500 Received: (qmail 27765 invoked by uid 48); 9 Jan 2008 11:15:15 -0000 Date: 9 Jan 2008 11:15:15 -0000 Message-ID: <20080109111515.27764.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071114144319.5323.timb@bluearc.com> References: <20071114144319.5323.timb@bluearc.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5323] Assignment of grouped sections in linker script ignored X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 11:15:28 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-09 11:15 ------- Hi Tim, I think that you are taking the wrong approach. Either the compiler should not be generating a group to contain the out-of-line function (if it just contains a single section) or else you should accept that a section group is a single entity that cannot be broken down and try to find a way improve the naming of the groups so that they do not conflict with each other. Cheers Nick -- http://sourceware.org/bugzilla/show_bug.cgi?id=5323 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 07:26:55 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCa1H-0000v7-Pe for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 07:26:55 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCa1G-0000ua-Ds for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:26:54 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCa1B-0000tN-EI for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:26:53 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCa1B-0000tK-8l for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:26:49 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCa18-00083x-PF for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:26:49 -0500 Received: (qmail 26359 invoked by uid 48); 9 Jan 2008 12:26:36 -0000 Date: 9 Jan 2008 12:26:36 -0000 Message-ID: <20080109122636.26358.qmail@sourceware.org> From: "timb at bluearc dot com" To: bug-binutils@gnu.org In-Reply-To: <20071114144319.5323.timb@bluearc.com> References: <20071114144319.5323.timb@bluearc.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5323] Assignment of grouped sections in linker script ignored X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 12:26:54 -0000 ------- Additional Comments From timb at bluearc dot com 2008-01-09 12:26 ------- gcc's naming is quite reasonable: the names of section groups (and the sections in them) clash because the corresponding symbol names do. We are deliberately using partial linking and localization of symbols in order to violate the one definition rule. The section groups emitted by newer versions of gcc threw a spanner in the works because although we could make the symbols local we couldn't hide the section groups. The old-style linkonce sections could just be folded into the desired output sections, whereas ld was stubbornly refusing to let us have any say in what it does with grouped sections. The option added by my patch doesn't break section groups apart, it eliminates them in just the same way as a final link normally does. It's certainly crude, but it does what we need it to, and is about the best we could manage with our limited knowledge of ld internals. It may be useful for people doing something similar, but not for anyone wanting finer control over section groups. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5323 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 07:27:24 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCa1j-000137-UH for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 07:27:23 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCa1i-00012M-Ee for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:27:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCa1e-00010X-KG for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:27:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCa1e-00010U-Cj for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:27:18 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCa1d-0008ER-Ns for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:27:18 -0500 Received: (qmail 26464 invoked by uid 48); 9 Jan 2008 12:27:12 -0000 Date: 9 Jan 2008 12:27:12 -0000 Message-ID: <20080109122712.26463.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 12:27:22 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-09 12:27 ------- Created an attachment (id=2191) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2191&action=view) Set partial_inplace to FALSE for FR30 relocs -- http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 07:29:45 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCa41-0001v8-B4 for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 07:29:45 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCa3y-0001tm-UE for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:29:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCa3u-0001s8-1Q for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:29:41 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCa3t-0001s4-Pz for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:29:37 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCa3t-0000T0-6D for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:29:37 -0500 Received: (qmail 27293 invoked by uid 48); 9 Jan 2008 12:29:31 -0000 Date: 9 Jan 2008 12:29:31 -0000 Message-ID: <20080109122931.27292.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080108131604.5552.markus.heigl@fme.fujitsu.com> References: <20080108131604.5552.markus.heigl@fme.fujitsu.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5552] Wrong data address after linking X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 12:29:43 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-09 12:29 ------- Hi Markus, This was a problem with the reloc descriptions in the elf32-fr30.c file - they had the partial_inplace field set to TRUE which is the wrong thing to do for ports which use RELA type relocs. I have applied the uploaded patch to fix this. Cheers Nick bfd/ChangeLog PR gas/5552 * elf32-fr30.c (fr30_elf_howto_table): Set partial_inplace field to FALSE for all relocs. -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5552 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 07:59:24 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCaWi-0001Sa-Jf for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 07:59:24 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCaWh-0001ST-7M for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:59:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCaWc-0001S3-QZ for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:59:22 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCaWc-0001S0-Js for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:59:18 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCaWX-00086W-8H for bug-binutils@gnu.org; Wed, 09 Jan 2008 07:59:18 -0500 Received: (qmail 4732 invoked by uid 48); 9 Jan 2008 12:59:06 -0000 Date: 9 Jan 2008 12:59:06 -0000 Message-ID: <20080109125906.4731.qmail@sourceware.org> From: "drow at sources dot redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102154300.5533.drow@sources.redhat.com> References: <20080102154300.5533.drow@sources.redhat.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5533] ld -e (--entry) is too quiet on bad symbol names X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 12:59:23 -0000 ------- Additional Comments From drow at sources dot redhat dot com 2008-01-09 12:59 ------- Oops, the message is only suppressed for -shared. I was building an executable shared library. Does entry_symbol.name get set from both the default linker script and the command line? Not warning with -shared and ENTRY is probably appropriate, since all the existing -shared linker scripts have an ENTRY and most shared libraries are executable. -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |NEW Last reconfirmed|0000-00-00 00:00:00 |2008-01-09 12:59:06 date| | http://sourceware.org/bugzilla/show_bug.cgi?id=5533 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 10:03:49 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCcT6-0006Qo-Uf for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 10:03:48 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCcT5-0006On-DS for bug-binutils@gnu.org; Wed, 09 Jan 2008 10:03:47 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCcT4-0006Nq-M5 for bug-binutils@gnu.org; Wed, 09 Jan 2008 10:03:47 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCcT4-0006Nd-Fa for bug-binutils@gnu.org; Wed, 09 Jan 2008 10:03:46 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCcT3-0003H7-Qm for bug-binutils@gnu.org; Wed, 09 Jan 2008 10:03:46 -0500 Received: (qmail 10871 invoked by uid 48); 9 Jan 2008 15:03:44 -0000 Date: 9 Jan 2008 15:03:44 -0000 Message-ID: <20080109150344.10870.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102154300.5533.drow@sources.redhat.com> References: <20080102154300.5533.drow@sources.redhat.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5533] ld -e (--entry) is too quiet on bad symbol names X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 15:03:47 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-09 15:03 ------- Hi Daniel, > Does entry_symbol.name get set from both the default linker script and the > command line? Yes. See ld/ldlang.c:lang_add_entry(). It has a parameter which tells it whether the symbol is being set from a linker script (default or otherwise) or from the command line. The command line takes precedence. > Not warning with -shared and ENTRY is probably appropriate, since > all the existing -shared linker scripts have an ENTRY and most shared > libraries are executable. Agreed. Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5533 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 11:25:36 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCdkG-0001uw-GL for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 11:25:36 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCdkF-0001s4-1E for bug-binutils@gnu.org; Wed, 09 Jan 2008 11:25:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCdkC-0001n3-Qf for bug-binutils@gnu.org; Wed, 09 Jan 2008 11:25:34 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCdkC-0001mb-GG for bug-binutils@gnu.org; Wed, 09 Jan 2008 11:25:32 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCdkC-0007yf-7h for bug-binutils@gnu.org; Wed, 09 Jan 2008 11:25:32 -0500 Received: (qmail 8241 invoked by uid 48); 9 Jan 2008 16:25:30 -0000 Date: 9 Jan 2008 16:25:30 -0000 Message-ID: <20080109162530.8240.qmail@sourceware.org> From: "drow at sources dot redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102154300.5533.drow@sources.redhat.com> References: <20080102154300.5533.drow@sources.redhat.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5533] ld -e (--entry) is too quiet on bad symbol names X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2008 16:25:35 -0000 ------- Additional Comments From drow at sources dot redhat dot com 2008-01-09 16:25 ------- Sorry, that's not what I meant. -shared, ENTRY, and not found is valid not to warn. -shared, -e, and not found is different. What do you think of this? if (link_info.relocatable || link_info.shared) - warn = FALSE; + warn = entry_from_cmdline; else -- What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | http://sourceware.org/bugzilla/show_bug.cgi?id=5533 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 09 22:33:57 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCoB3-0003NK-Pn for mharc-bug-binutils@gnu.org; Wed, 09 Jan 2008 22:33:57 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCoB2-0003LJ-71 for bug-binutils@gnu.org; Wed, 09 Jan 2008 22:33:56 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCoB0-0003J2-Sj for bug-binutils@gnu.org; Wed, 09 Jan 2008 22:33:55 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCoB0-0003Iq-Nw for bug-binutils@gnu.org; Wed, 09 Jan 2008 22:33:54 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCoB0-0002lr-Co for bug-binutils@gnu.org; Wed, 09 Jan 2008 22:33:54 -0500 Received: (qmail 22811 invoked by uid 48); 10 Jan 2008 03:33:53 -0000 Date: 10 Jan 2008 03:33:53 -0000 From: "greg at mcgary dot org" To: bug-binutils@gnu.org Message-ID: <20080110033353.5597.greg@mcgary.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5597] New: objdump --debugging loses with stabs when sizeof (bfd_vma)=4 and enum member needs 64 bits X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2008 03:33:56 -0000 -- Summary: objdump --debugging loses with stabs when sizeof (bfd_vma)=4 and enum member needs 64 bits Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: normal Priority: P2 Component: binutils AssignedTo: unassigned at sources dot redhat dot com ReportedBy: greg at mcgary dot org CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5597 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 10 09:29:45 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCyPh-0001Dz-6d for mharc-bug-binutils@gnu.org; Thu, 10 Jan 2008 09:29:45 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCyPe-00019W-Ig for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:29:42 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCyPd-00017P-Ed for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:29:41 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCyPd-00017F-9t for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:29:41 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCyPd-0008HN-0O for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:29:41 -0500 Received: (qmail 26204 invoked by uid 48); 10 Jan 2008 14:29:39 -0000 Date: 10 Jan 2008 14:29:39 -0000 Message-ID: <20080110142939.26203.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102154300.5533.drow@sources.redhat.com> References: <20080102154300.5533.drow@sources.redhat.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5533] ld -e (--entry) is too quiet on bad symbol names X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2008 14:29:44 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-10 14:29 ------- Hi Daniel, Sorry for being so dense! Yes your patch will work and I have checked it in along with this ChangeLog entry. OK to close this PR now ? :-) Cheers Nick ld/ChangeLog 2008-01-10 Daniel Jacobowitz PR ld/5533 * ldlang.c (lang_end): Issue a warning for a missing start symbol of a shared library if the symbol was specified on the command line. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5533 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 10 09:41:00 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCyaa-0004mD-Ls for mharc-bug-binutils@gnu.org; Thu, 10 Jan 2008 09:41:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCyaY-0004kU-SQ for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:40:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCyaX-0004k7-Cx for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:40:58 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCyaX-0004k4-8C for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:40:57 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCyaW-0003qc-Tb for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:40:57 -0500 Received: (qmail 879 invoked by uid 48); 10 Jan 2008 14:40:55 -0000 Date: 10 Jan 2008 14:40:55 -0000 Message-ID: <20080110144055.878.qmail@sourceware.org> From: "drow at sources dot redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102154300.5533.drow@sources.redhat.com> References: <20080102154300.5533.drow@sources.redhat.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5533] ld -e (--entry) is too quiet on bad symbol names X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2008 14:40:59 -0000 ------- Additional Comments From drow at sources dot redhat dot com 2008-01-10 14:40 ------- Thanks! -- What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5533 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 10 09:58:17 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JCyrI-0008Pg-Vy for mharc-bug-binutils@gnu.org; Thu, 10 Jan 2008 09:58:17 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JCyrH-0008O1-W3 for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:58:16 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JCyrG-0008LN-DK for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:58:15 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JCyrF-0008LG-Vp for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:58:14 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JCyrF-0001OO-HK for bug-binutils@gnu.org; Thu, 10 Jan 2008 09:58:13 -0500 Received: (qmail 8575 invoked by uid 48); 10 Jan 2008 14:58:12 -0000 Date: 10 Jan 2008 14:58:12 -0000 Message-ID: <20080110145812.8574.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080110033353.5597.greg@mcgary.org> References: <20080110033353.5597.greg@mcgary.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5597] objdump --debugging loses with stabs when sizeof (bfd_vma)=4 and enum member needs 64 bits X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2008 14:58:16 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-10 14:58 ------- Hi Greg, Are there really enums that need 64-bit values ? Wow. Anyway, in what kind of situation do you get a 32-bit bfd_vma attempting to hold a 64-bit enum ? And if the host does not support 64-bit long longs, how can you expect it to be able to display 64-bit debug information ? Cheers Nick PS. For the record, this issue documented in this PR actually started with this email thread: http://sourceware.org/ml/binutils/2008-01/msg00108.html -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5597 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 10 18:50:23 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JD7AF-0003Io-Lp for mharc-bug-binutils@gnu.org; Thu, 10 Jan 2008 18:50:23 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JD7AD-0003Fc-RQ for bug-binutils@gnu.org; Thu, 10 Jan 2008 18:50:21 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JD7AA-000385-9E for bug-binutils@gnu.org; Thu, 10 Jan 2008 18:50:20 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JD7AA-00037g-31 for bug-binutils@gnu.org; Thu, 10 Jan 2008 18:50:18 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JD7A9-0000T6-Kg for bug-binutils@gnu.org; Thu, 10 Jan 2008 18:50:17 -0500 Received: (qmail 7223 invoked by uid 48); 10 Jan 2008 23:50:16 -0000 Date: 10 Jan 2008 23:50:16 -0000 Message-ID: <20080110235016.7222.qmail@sourceware.org> From: "greg at mcgary dot org" To: bug-binutils@gnu.org In-Reply-To: <20080110033353.5597.greg@mcgary.org> References: <20080110033353.5597.greg@mcgary.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5597] objdump --debugging loses with stabs when sizeof (bfd_vma)=4 and enum member needs 64 bits X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2008 23:50:22 -0000 ------- Additional Comments From greg at mcgary dot org 2008-01-10 23:50 ------- (In reply to comment #1) Users like enumerator constants as a somewhat more type-checked and/or symbolically-printable-in-gdb substitute for #define constants. As such, they're as likely to have big values in systems code as #defines are. Regarding host support for 64-bit integers, 32-bit systems that don't have 64-bit long long are surely a vanishing breed. In the rare case where a host doesn't support 64-bit ints, binutils will simply remain as crippled as it is already. Fixing this bug just lifts an arbitrary size restriction and allows debug info to print as well as it can within the capabilities of the host. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5597 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 06:50:47 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JE1MV-00049L-8e for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 06:50:47 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JE1MS-00045a-P0 for bug-binutils@gnu.org; Sun, 13 Jan 2008 06:50:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JE1MR-00042s-5H for bug-binutils@gnu.org; Sun, 13 Jan 2008 06:50:44 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE1MQ-00042a-V5 for bug-binutils@gnu.org; Sun, 13 Jan 2008 06:50:42 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JE1MQ-00006a-Eq for bug-binutils@gnu.org; Sun, 13 Jan 2008 06:50:42 -0500 Received: (qmail 23831 invoked by uid 48); 13 Jan 2008 11:50:41 -0000 Date: 13 Jan 2008 11:50:41 -0000 From: "schwab at suse dot de" To: bug-binutils@gnu.org Message-ID: <20080113115041.5604.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5604] New: ld crash during eh-frame parsing X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 11:50:45 -0000 The linker crashes during eh-frame parsing on ppc64. The bug was introduced by this change: 2007-12-15 Richard Sandiford * elf-bfd.h (eh_cie_fde): Add u.fde.next_for_section and u.cie.gc_mark. (bfd_elf_section_data): Add fde_list. (elf_fde_list): New macro. (elf_obj_tdata): Add eh_frame_section. (elf_eh_frame_section): New macro. (_bfd_elf_gc_mark_reloc): Remove last parameter. (_bfd_elf_gc_mark_fdes): Declare. * elf-eh-frame.c (_bfd_elf_get_eh_frame_sec_info): Chain the FDEs for each input section. (mark_entry, _bfd_elf_gc_mark_fdes): New functions. * elflink.c (_bfd_elf_gc_mark_reloc): Remove is_eh parameter. (_bfd_elf_gc_mark): Update call accordingly. Mark the relocations againts the section's FDEs. Don't mark the bfd's elf_eh_frame_section. (bfd_elf_gc_sections): Parse each input bfd's .eh_frame before marking any input sections. Remove the current EH handling. * section.c (bfd_section): Remove gc_mark_from_eh. * ecoff.c (bfd_debug_section): Update initializer accordingly. The most likely candidate is the change in bfd_elf_gc_sections. -- Summary: ld crash during eh-frame parsing Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: normal Priority: P2 Component: ld AssignedTo: unassigned at sources dot redhat dot com ReportedBy: schwab at suse dot de CC: amodra at bigpond dot net dot au,bug-binutils at gnu dot org,rsandifo at sourceware dot org GCC target triplet: powerpc64-linux http://sourceware.org/bugzilla/show_bug.cgi?id=5604 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 07:00:20 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JE1Vk-0001Vb-Oe for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:20 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JE1Vj-0001Um-Et for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:19 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JE1Vh-0001UH-T4 for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:19 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE1Vh-0001U8-P1 for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:17 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JE1Vh-0001Jl-Cl for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:17 -0500 Received: (qmail 26090 invoked by uid 48); 13 Jan 2008 12:00:16 -0000 Date: 13 Jan 2008 12:00:16 -0000 Message-ID: <20080113120016.26089.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080113115041.5604.schwab@suse.de> References: <20080113115041.5604.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5604] ld crash during eh-frame parsing X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 12:00:19 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-13 12:00 ------- Created an attachment (id=2195) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2195&action=view) Testcase -- http://sourceware.org/bugzilla/show_bug.cgi?id=5604 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 07:00:50 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JE1WE-0001tq-4x for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:50 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JE1WC-0001tZ-ES for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:48 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JE1WA-0001tB-HA for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:47 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE1WA-0001t8-C3 for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:46 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JE1W9-0001Nq-TE for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:00:46 -0500 Received: (qmail 26162 invoked by uid 48); 13 Jan 2008 12:00:45 -0000 Date: 13 Jan 2008 12:00:45 -0000 Message-ID: <20080113120045.26161.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080113115041.5604.schwab@suse.de> References: <20080113115041.5604.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5604] ld crash during eh-frame parsing X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 12:00:48 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-13 12:00 ------- Created an attachment (id=2196) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2196&action=view) Testcase -- http://sourceware.org/bugzilla/show_bug.cgi?id=5604 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 07:01:11 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JE1WZ-000237-H6 for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 07:01:11 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JE1WX-00021S-GZ for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:01:09 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JE1WV-00021D-3S for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:01:08 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE1WU-00021A-SM for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:01:06 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JE1WU-0001Ro-FO for bug-binutils@gnu.org; Sun, 13 Jan 2008 07:01:06 -0500 Received: (qmail 26208 invoked by uid 48); 13 Jan 2008 12:01:05 -0000 Date: 13 Jan 2008 12:01:05 -0000 Message-ID: <20080113120105.26207.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080113115041.5604.schwab@suse.de> References: <20080113115041.5604.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5604] ld crash during eh-frame parsing X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 12:01:10 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-13 12:01 ------- Created an attachment (id=2197) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2197&action=view) Testcase -- http://sourceware.org/bugzilla/show_bug.cgi?id=5604 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 14:39:46 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JE8gM-0001Bx-Gq for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 14:39:46 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JE8gK-0001BT-5g for bug-binutils@gnu.org; Sun, 13 Jan 2008 14:39:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JE8gG-0001Ak-5M for bug-binutils@gnu.org; Sun, 13 Jan 2008 14:39:43 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE8gF-0001Ad-T4 for bug-binutils@gnu.org; Sun, 13 Jan 2008 14:39:39 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JE8gF-0004LM-Kf for bug-binutils@gnu.org; Sun, 13 Jan 2008 14:39:39 -0500 Received: (qmail 14389 invoked by uid 48); 13 Jan 2008 19:39:38 -0000 Date: 13 Jan 2008 19:39:38 -0000 From: "grobian at gentoo dot org" To: bug-binutils@gnu.org Message-ID: <20080113193938.5606.grobian@gentoo.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5606] New: recognition for x86_64-pc-solaris2.10 target X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 19:39:44 -0000 Using the patch that I will attach next, I added support for x86_64-pc-solaris2.10 as target. I based the patch on the sparcv9-sun-solaris2.* case. The patch allows me to have a full 64-bits environment (toolchain, userland). So far I haven't found any problems. -- Summary: recognition for x86_64-pc-solaris2.10 target Product: binutils Version: 2.18 Status: NEW Severity: enhancement Priority: P2 Component: binutils AssignedTo: unassigned at sources dot redhat dot com ReportedBy: grobian at gentoo dot org CC: bug-binutils at gnu dot org GCC build triplet: i386-pc-solaris2.10 GCC host triplet: i386-pc-solaris2.10 GCC target triplet: x86_64-pc-solaris2.10 http://sourceware.org/bugzilla/show_bug.cgi?id=5606 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 14:40:35 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JE8h8-0001RS-T9 for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 14:40:34 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JE8h7-0001Qo-T6 for bug-binutils@gnu.org; Sun, 13 Jan 2008 14:40:34 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JE8h6-0001PZ-Da for bug-binutils@gnu.org; Sun, 13 Jan 2008 14:40:33 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE8h6-0001PO-5G for bug-binutils@gnu.org; Sun, 13 Jan 2008 14:40:32 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JE8h6-0004Wo-2Q for bug-binutils@gnu.org; Sun, 13 Jan 2008 14:40:32 -0500 Received: (qmail 14624 invoked by uid 48); 13 Jan 2008 19:40:30 -0000 Date: 13 Jan 2008 19:40:30 -0000 Message-ID: <20080113194030.14623.qmail@sourceware.org> From: "grobian at gentoo dot org" To: bug-binutils@gnu.org In-Reply-To: <20080113193938.5606.grobian@gentoo.org> References: <20080113193938.5606.grobian@gentoo.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5606] recognition for x86_64-pc-solaris2.10 target X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 19:40:34 -0000 ------- Additional Comments From grobian at gentoo dot org 2008-01-13 19:40 ------- Created an attachment (id=2198) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2198&action=view) x86_64-pc-solaris2 target recognition -- http://sourceware.org/bugzilla/show_bug.cgi?id=5606 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 16:50:33 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEAiu-0003is-UI for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 16:50:32 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEAit-0003iO-Bv for bug-binutils@gnu.org; Sun, 13 Jan 2008 16:50:31 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEAir-0003ht-Rz for bug-binutils@gnu.org; Sun, 13 Jan 2008 16:50:30 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEAir-0003hn-Fi for bug-binutils@gnu.org; Sun, 13 Jan 2008 16:50:29 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEAir-00033j-2H for bug-binutils@gnu.org; Sun, 13 Jan 2008 16:50:29 -0500 Received: (qmail 3625 invoked by uid 48); 13 Jan 2008 21:50:28 -0000 Date: 13 Jan 2008 21:50:28 -0000 Message-ID: <20080113215028.3624.qmail@sourceware.org> From: "Henry at BigFoot dot de" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 21:50:31 -0000 ------- Additional Comments From Henry at BigFoot dot de 2008-01-13 21:50 ------- Similar problems on a Linux host with target mingw32. A simple workarrount is to use "Quotes" for filename. 2 ICON foo-bar.ico This line in rc file failed in binutils 2.18.50 with message i686-pc-mingw32-windres: can't open icon file `foo': No such file or directory 2 ICON "foo-bar.ico" Worked without patch I Mean your hack would not work all times. What is with '-' in filenames or utf8? -- http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 17:05:05 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEAwz-0006GX-7u for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 17:05:05 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEAwx-0006Cv-3w for bug-binutils@gnu.org; Sun, 13 Jan 2008 17:05:03 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEAwu-00068D-Id for bug-binutils@gnu.org; Sun, 13 Jan 2008 17:05:01 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEAwu-000686-E8 for bug-binutils@gnu.org; Sun, 13 Jan 2008 17:05:00 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEAwu-0005H1-3P for bug-binutils@gnu.org; Sun, 13 Jan 2008 17:05:00 -0500 Received: (qmail 7848 invoked by uid 48); 13 Jan 2008 22:04:59 -0000 Date: 13 Jan 2008 22:04:59 -0000 Message-ID: <20080113220459.7847.qmail@sourceware.org> From: "Henry at BigFoot dot de" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 22:05:03 -0000 ------- Additional Comments From Henry at BigFoot dot de 2008-01-13 22:04 ------- (In reply to comment #2) > 2 ICON foo-bar.ico > This line in rc file failed in binutils 2.18.50 with message > i686-pc-mingw32-windres: can't open icon file `foo': No such file or directory binutils 2.18.50-20071229 was used for the line above. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 13 17:17:52 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEB9M-0000Rr-3v for mharc-bug-binutils@gnu.org; Sun, 13 Jan 2008 17:17:52 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEB9K-0000Q2-Pp for bug-binutils@gnu.org; Sun, 13 Jan 2008 17:17:50 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEB9I-0000Lr-ND for bug-binutils@gnu.org; Sun, 13 Jan 2008 17:17:49 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEB9I-0000LZ-HO for bug-binutils@gnu.org; Sun, 13 Jan 2008 17:17:48 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEB9I-0006ty-CK for bug-binutils@gnu.org; Sun, 13 Jan 2008 17:17:48 -0500 Received: (qmail 19228 invoked by uid 48); 13 Jan 2008 22:17:47 -0000 Date: 13 Jan 2008 22:17:47 -0000 Message-ID: <20080113221747.19227.qmail@sourceware.org> From: "Henry at BigFoot dot de" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 22:17:51 -0000 ------- Additional Comments From Henry at BigFoot dot de 2008-01-13 22:17 ------- (In reply to comment #3) > (In reply to comment #2) > > 2 ICON foo-bar.ico > > This line in rc file failed in binutils 2.18.50 with message > > i686-pc-mingw32-windres: can't open icon file `foo': No such file Sorry for confusing. binutils-2.18.50-20080109 was used -- http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 14 01:27:20 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEIn2-0002sH-1a for mharc-bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:20 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEIn0-0002sC-UY for bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:19 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEImy-0002rv-EF for bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:17 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEImy-0002rs-93 for bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:16 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEImy-0001be-41 for bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:16 -0500 Received: (qmail 19157 invoked by uid 48); 14 Jan 2008 06:27:15 -0000 Date: 14 Jan 2008 06:27:15 -0000 Message-ID: <20080114062715.19156.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080113115041.5604.schwab@suse.de> References: <20080113115041.5604.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5604] ld crash during eh-frame parsing X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2008 06:27:19 -0000 -- What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at sources dot |amodra at bigpond dot net |redhat dot com |dot au http://sourceware.org/bugzilla/show_bug.cgi?id=5604 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 14 01:27:38 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEInK-0002ym-9R for mharc-bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:38 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEInI-0002xE-Jb for bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:36 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEInG-0002wv-Uu for bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:36 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEInG-0002ws-Op for bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:34 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEInG-0001ew-LF for bug-binutils@gnu.org; Mon, 14 Jan 2008 01:27:34 -0500 Received: (qmail 19190 invoked by uid 48); 14 Jan 2008 06:27:33 -0000 Date: 14 Jan 2008 06:27:33 -0000 Message-ID: <20080114062733.19189.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080113115041.5604.schwab@suse.de> References: <20080113115041.5604.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5604] ld crash during eh-frame parsing X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2008 06:27:36 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-14 06:27 ------- Looking.. -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Last reconfirmed|0000-00-00 00:00:00 |2008-01-14 06:27:33 date| | http://sourceware.org/bugzilla/show_bug.cgi?id=5604 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 14 03:49:01 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEL09-0001gZ-FJ for mharc-bug-binutils@gnu.org; Mon, 14 Jan 2008 03:49:01 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEL08-0001fw-A0 for bug-binutils@gnu.org; Mon, 14 Jan 2008 03:49:00 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEL05-0001eq-JD for bug-binutils@gnu.org; Mon, 14 Jan 2008 03:48:58 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEL05-0001ei-BD for bug-binutils@gnu.org; Mon, 14 Jan 2008 03:48:57 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEL05-0001xJ-Bv for bug-binutils@gnu.org; Mon, 14 Jan 2008 03:48:57 -0500 Received: (qmail 17154 invoked by uid 48); 14 Jan 2008 07:48:55 -0000 Date: 14 Jan 2008 07:48:55 -0000 Message-ID: <20080114074855.17153.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080113115041.5604.schwab@suse.de> References: <20080113115041.5604.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5604] ld crash during eh-frame parsing X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2008 08:49:00 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-14 07:48 ------- The primary problem is that gc_mark_hook is now being called much later in the link process. The powerpc64 gc_mark_hook uses info set up by check_relocs, _ppc64_elf_section_data.u.opd_func_sec, which is overwritten by ppc64_elf_edit_opd before bfd_elf_discard_info is called. A secondary problem is that the powerpc64 gc_mark_hook contains a hack to fire off a gc-sections mark starting from the entry point code section rather than the entry point opd section as done by the generic code. This means a lot of unnecessary work for the elf-eh-frame.c _bfd_elf_gc_mark_rsec. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5604 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 14 09:03:00 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEPtz-00034e-VR for mharc-bug-binutils@gnu.org; Mon, 14 Jan 2008 09:03:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JELt9-00024o-Uj for bug-binutils@gnu.org; Mon, 14 Jan 2008 04:45:51 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JELt8-00022j-1p for bug-binutils@gnu.org; Mon, 14 Jan 2008 04:45:50 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JELt7-00022S-Rw for bug-binutils@gnu.org; Mon, 14 Jan 2008 04:45:49 -0500 Received: from m13-46.163.com ([220.181.13.46]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JELsy-0005wK-0P for bug-binutils@gnu.org; Mon, 14 Jan 2008 04:45:50 -0500 Received: from 202.108.130.139 ( 202.108.130.139 [202.108.130.139] ) by ajax-webmail-wmsvr46 (Coremail) ; Mon, 14 Jan 2008 17:00:25 +0800 (CST) Date: Mon, 14 Jan 2008 17:00:25 +0800 (CST) From: bati.deng@163.com To: bug-binutils@gnu.org Message-ID: <4511497.665451200301225848.JavaMail.coremail@bj163app46.163.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_176425_5780007.1200301225843" X-Originating-IP: [192.168.208.56 (202.108.130.139)] X-Priority: 3 X-Mailer: Coremail Webmail Server Version XTx build 071218(4376.1446.1439) Copyright (c) 2002-2008 www.mailtech.cn 163com X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-Greylist: delayed 2709 seconds by postgrey-1.27 at monty-python; Mon, 14 Jan 2008 04:45:36 EST X-Mailman-Approved-At: Mon, 14 Jan 2008 09:02:57 -0500 Subject: Fw:Why there is no ld in binutils package X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2008 09:45:52 -0000 ------=_Part_176425_5780007.1200301225843 Content-Type: text/plain; charset=gbk Content-Transfer-Encoding: quoted-printable Hi All, =20 I installed binutils-2.14-3.aix5.1.ppc.rpm on AIX5.3. But I could not find = GNU ld tools. The other tools are also existed. =20 The detailed information are as following: =20 bash-3.00# which ld /usr/bin/ld =20 bash-3.00# find ./ -name ld ./usr/bin/ld ./usr/ccs/bin/ld =20 bash-3.00# find / -name as /opt/freeware/bin/as /usr/bin/as /usr/ccs/bin/as /usr/linux/bin/as =20 bash-3.00# rpm -qf /usr/bin/ld file /usr/bin/ld is not owned by any package =20 bash-3.00# rpm -qf /usr/bin/as file /usr/bin/as is not owned by any package =20 bash-3.00# rpm -qf /opt/freeware/bin/as binutils-2.14-3 =20 bash-3.00# ls /opt/freeware/bin/ [ bashbug cryptdir expectk granlib join = msgcmp perlbug pstruct splain tr xgettext a2p bison csplit expr grep kibitz = msgcomm perlcc ptx split true xkibitz aclocal bunzip2 cut factor groups kill = msgfmt perldoc pwd stat tsort xpstat aclocal-1.8 bzcat date false gstrip libnetcfg= msgmerge perlivp readcd strings tty xsubpp addr2line bzip2 dd fgrep gunzip libtool = msgunfmt pgawk readelf stty uname xxd ar bzip2recover decryptdir find2perl gzexe libtooliz= e mv pgawk-3.1.3 readlink su unbuffer yacc as c++filt devdump fmt gzip link = ngettext piconv rftp sum unexpand yes autoconf c2ph df fold h2ph ln = nice pinky rlogin-cwd sync uniq zcat autoexpect cat dir ftp-rfc h2xs logname = nl pl2pm rm tac unlink zcmp autoheader cdrecord dircolors g++ head lpunlock = nm pod2html rmdir tail uptime zgrep autom4te chgrp dirname gawk hostid ls = nohup pod2latex rpm tar users zmore automake chmod dislocate gawk-3.1.3 hostname m4 = objcopy pod2man rpm2cpio tclsh vdir znew automake-1.8 chown dprofpp gcc id make = objdump pod2text s2p tclsh8.3 vim autopasswd chroot du gcov ifnames mawk = od pod2usage sed tee vimtutor autoreconf cksum echo gdb igawk md5sum = passmass podchecker seq test wc autoscan comm egrep gendiff install mkdir = paste podselect sha1sum timed-read weather autoupdate cp enc2xs gettext install-info mkfifo = patch pr shred timed-run who awk cpan env gettextize isodump mkisofs = pathchk printenv size tknewsbiff whoami basename cpp expand gld isoinfo mknod = perl printf sleep tkpasswd wish bash cppstdin expect gmake isovfy mkpasswd = perl5.8.2 psed sort touch wish8.3 =20 bash-3.00# rpm -ql binutils /opt/freeware/bin/addr2line /opt/freeware/bin/ar /opt/freeware/bin/as /opt/freeware/bin/c++filt /opt/freeware/bin/gld /opt/freeware/bin/granlib /opt/freeware/bin/gstrip /opt/freeware/bin/nm /opt/freeware/bin/objcopy /opt/freeware/bin/objdump /opt/freeware/bin/readelf /opt/freeware/bin/size /opt/freeware/bin/strings /opt/freeware/doc/binutils-2.14 /opt/freeware/doc/binutils-2.14/COPYING /opt/freeware/doc/binutils-2.14/COPYING.LIB /opt/freeware/doc/binutils-2.14/NEWS /opt/freeware/doc/binutils-2.14/README /opt/freeware/include/ansidecl.h /opt/freeware/include/bfd.h /opt/freeware/include/bfdlink.h /opt/freeware/include/dis-asm.h /opt/freeware/include/symcat.h /opt/freeware/info/as.info.gz /opt/freeware/info/bfd.info-1.gz /opt/freeware/info/bfd.info-2.gz /opt/freeware/info/bfd.info-3.gz /opt/freeware/info/bfd.info-4.gz /opt/freeware/info/bfd.info-5.gz /opt/freeware/info/bfd.info-6.gz /opt/freeware/info/bfd.info-7.gz /opt/freeware/info/bfd.info-8.gz /opt/freeware/info/bfd.info-9.gz /opt/freeware/info/bfd.info.gz /opt/freeware/info/binutils.info.gz /opt/freeware/info/configure.info-1.gz /opt/freeware/info/configure.info-2.gz /opt/freeware/info/configure.info-3.gz /opt/freeware/info/configure.info.gz /opt/freeware/info/dir.gz /opt/freeware/info/ld.info.gz /opt/freeware/info/standards.info.gz /opt/freeware/lib/libbfd.a /opt/freeware/lib/libbfd.la /opt/freeware/lib/libiberty.a /opt/freeware/lib/libopcodes.a /opt/freeware/lib/libopcodes.la /opt/freeware/man/man1/addr2line.1 /opt/freeware/man/man1/ar.1 /opt/freeware/man/man1/as.1 /opt/freeware/man/man1/c++filt.1 /opt/freeware/man/man1/dlltool.1 /opt/freeware/man/man1/ld.1 /opt/freeware/man/man1/nlmconv.1 /opt/freeware/man/man1/nm.1 /opt/freeware/man/man1/objcopy.1 /opt/freeware/man/man1/objdump.1 /opt/freeware/man/man1/ranlib.1 /opt/freeware/man/man1/readelf.1 /opt/freeware/man/man1/size.1 /opt/freeware/man/man1/strings.1 /opt/freeware/man/man1/strip.1 /opt/freeware/man/man1/windres.1 /opt/freeware/share/locale /opt/freeware/share/locale/da /opt/freeware/share/locale/da/LC_MESSAGES /opt/freeware/share/locale/da/LC_MESSAGES/bfd.mo /opt/freeware/share/locale/da/LC_MESSAGES/binutils.mo /opt/freeware/share/locale/da/LC_MESSAGES/ld.mo /opt/freeware/share/locale/da/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/de /opt/freeware/share/locale/de/LC_MESSAGES /opt/freeware/share/locale/de/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/es /opt/freeware/share/locale/es/LC_MESSAGES /opt/freeware/share/locale/es/LC_MESSAGES/bfd.mo /opt/freeware/share/locale/es/LC_MESSAGES/binutils.mo /opt/freeware/share/locale/es/LC_MESSAGES/gas.mo /opt/freeware/share/locale/es/LC_MESSAGES/ld.mo /opt/freeware/share/locale/es/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/fr /opt/freeware/share/locale/fr/LC_MESSAGES /opt/freeware/share/locale/fr/LC_MESSAGES/bfd.mo /opt/freeware/share/locale/fr/LC_MESSAGES/binutils.mo /opt/freeware/share/locale/fr/LC_MESSAGES/gas.mo /opt/freeware/share/locale/fr/LC_MESSAGES/ld.mo /opt/freeware/share/locale/fr/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/id /opt/freeware/share/locale/id/LC_MESSAGES /opt/freeware/share/locale/id/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/ja /opt/freeware/share/locale/ja/LC_MESSAGES /opt/freeware/share/locale/ja/LC_MESSAGES/bfd.mo /opt/freeware/share/locale/ja/LC_MESSAGES/binutils.mo /opt/freeware/share/locale/pt_BR /opt/freeware/share/locale/pt_BR/LC_MESSAGES /opt/freeware/share/locale/pt_BR/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/ro /opt/freeware/share/locale/ro/LC_MESSAGES /opt/freeware/share/locale/ro/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/sv /opt/freeware/share/locale/sv/LC_MESSAGES /opt/freeware/share/locale/sv/LC_MESSAGES/bfd.mo /opt/freeware/share/locale/sv/LC_MESSAGES/binutils.mo /opt/freeware/share/locale/sv/LC_MESSAGES/ld.mo /opt/freeware/share/locale/sv/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/tr /opt/freeware/share/locale/tr/LC_MESSAGES /opt/freeware/share/locale/tr/LC_MESSAGES/bfd.mo /opt/freeware/share/locale/tr/LC_MESSAGES/binutils.mo /opt/freeware/share/locale/tr/LC_MESSAGES/gas.mo /opt/freeware/share/locale/tr/LC_MESSAGES/ld.mo /opt/freeware/share/locale/tr/LC_MESSAGES/opcodes.mo /opt/freeware/share/locale/zh_CN /opt/freeware/share/locale/zh_CN/LC_MESSAGES /opt/freeware/share/locale/zh_CN/LC_MESSAGES/bfd.mo /opt/freeware/share/locale/zh_CN/LC_MESSAGES/binutils.mo /usr/bin/addr2line /usr/bin/objcopy /usr/bin/objdump /usr/bin/readelf /usr/linux/bin/as /usr/linux/bin/c++filt /usr/linux/bin/nm /usr/linux/bin/size /usr/linux/bin/strings =20 bash-3.00# =20 =20 =20 =CD=F8 =D2=D7 =D3=D0 =B5=C0 =B4=CA =B5=E4 =A3=AD=A3=AD =C8=AB =C7=F2 =D7=EE= =C7=BF =B4=F3 =B5=C4 =C3=E2 =B7=D1 =D3=A2 =BA=BA =BB=A5 =D2=EB =B4=CA =B5= =E4 =A3=A8 =D6=BB =D3=D0 2 =D5=D7 =A3=A9 ------=_Part_176425_5780007.1200301225843 Content-Type: text/html; charset=gbk Content-Transfer-Encoding: quoted-printable
Hi All,
 
I installed binutils-2.14-3.aix5.1.ppc.rpm on AIX5.3. But I could not = find GNU ld tools. The other tools are also existed.
 
The detailed information are as following:
 
bash-3.00# which ld
/usr/bin/ld
 
bash-3.00# find ./ -name ld
./usr/bin/ld
./usr/ccs/bin/ld
 
bash-3.00# find / -name as
/opt/freeware/bin/as
/usr/bin/as
/usr/ccs/bin/as
/usr/linux/bin/as
 
bash-3.00# rpm -qf /usr/bin/ld
file /usr/bin/ld is not owned by any&nbs= p;package
 
bash-3.00# rpm -qf /usr/bin/as
file /usr/bin/as is not owned by any&nbs= p;package
 
bash-3.00# rpm -qf /opt/freeware/bin/as
binutils-2.14-3
 
bash-3.00# ls /opt/freeware/bin/
[           &nb= sp; bashbug       cryptdir &nb= sp;  expectk     granlib  &nbs= p;    join       &nb= sp;msgcmp     perlbug     = ; pstruct     splain    &= nbsp; tr        xgettext
a2p           b= ison         csplit  = ;    expr       &nbs= p;grep          kibitz&nb= sp;     msgcomm    perlcc = ;      ptx      = ;   split       true = ;     xkibitz
aclocal       bunzip2  &n= bsp;    cut       &n= bsp; factor      groups   = ;     kill      &nbs= p; msgfmt     perldoc    =   pwd         stat&n= bsp;       tsort    =  xpstat
aclocal-1.8   bzcat      =    date        false=        gstrip    &nb= sp;   libnetcfg   msgmerge   p= erlivp      readcd    &nb= sp; strings     tty    &n= bsp;  xsubpp
addr2line     bzip2    &n= bsp;    dd       &nb= sp;  fgrep       gunzip &= nbsp;      libtool    &nb= sp;msgunfmt   pgawk       = ; readelf     stty    &nb= sp;   uname     xxd
ar           &n= bsp;bzip2recover  decryptdir  find2perl  &nbs= p;gzexe         libtoolize&nbs= p; mv         pgawk-3.1.3=   readlink    su     = ;     unbuffer  yacc
as           &n= bsp;c++filt       devdump  &nb= sp;  fmt         gzi= p          link &nbs= p;      ngettext   piconv = ;      rftp     &nbs= p;  sum         unex= pand  yes
autoconf      c2ph   &nbs= p;      df      = ;    fold       &nbs= p;h2ph          ln &= nbsp;        nice   =     pinky       &nbs= p;rlogin-cwd  sync        = ;uniq      zcat
autoexpect    cat     &nb= sp;     dir      &nb= sp;  ftp-rfc     h2xs   &= nbsp;      logname    &nb= sp;nl         pl2pm  = ;      rm      =     tac        =  unlink    zcmp
autoheader    cdrecord    &nbs= p; dircolors   g++      &= nbsp;  head         =  lpunlock    nm      = ;   pod2html     rmdir  &= nbsp;    tail       =  uptime    zgrep
autom4te      chgrp   &nb= sp;     dirname     gawk&= nbsp;       hostid   &nbs= p;    ls        = ;  nohup      pod2latex  =   rpm         tar&nb= sp;        users   &= nbsp; zmore
automake      chmod   &nb= sp;     dislocate   gawk-3.1.3 = ; hostname      m4   &nbs= p;      objcopy    pod2ma= n      rpm2cpio    tclsh&= nbsp;      vdir     =  znew
automake-1.8  chown       = ;  dprofpp     gcc   &nbs= p;     id       = ;     make      &nbs= p; objdump    pod2text    &nbs= p;s2p         tclsh8.3 &n= bsp;  vim
autopasswd    chroot     =    du         &= nbsp;gcov        ifnames  = ;     mawk      &nbs= p; od         pod2usage&n= bsp;   sed        &n= bsp;tee         vimtutor
autoreconf    cksum     &= nbsp;   echo        = gdb         igawk  &= nbsp;      md5sum    &nbs= p; passmass   podchecker   seq &nbs= p;       test    &nb= sp;   wc
autoscan      comm   &nbs= p;      egrep     &n= bsp; gendiff     install   &nb= sp;   mkdir       paste&n= bsp;     podselect    sha1sum&= nbsp;    timed-read  weather
autoupdate    cp     &nbs= p;      enc2xs     &= nbsp;gettext     install-info  mkfifo&nb= sp;     patch      p= r           shred&nb= sp;      timed-run   who
awk           c= pan          env &nb= sp;       gettextize  isodump&= nbsp;      mkisofs    &nb= sp;pathchk    printenv     siz= e        tknewsbiff  whoa= mi
basename      cpp    = ;       expand    &n= bsp; gld         isoinfo&= nbsp;      mknod     = ;  perl       printf &nbs= p;     sleep      &n= bsp;tkpasswd    wish
bash          cppstd= in      expect     &= nbsp;gmake       isovfy   = ;     mkpasswd    perl5.8.2&nb= sp; psed         sort&nbs= p;       touch    &n= bsp;  wish8.3
 
bash-3.00# rpm -ql binutils
/opt/freeware/bin/addr2line
/opt/freeware/bin/ar
/opt/freeware/bin/as
/opt/freeware/bin/c++filt
/opt/freeware/bin/gld
/opt/freeware/bin/granlib
/opt/freeware/bin/gstrip
/opt/freeware/bin/nm
/opt/freeware/bin/objcopy
/opt/freeware/bin/objdump
/opt/freeware/bin/readelf
/opt/freeware/bin/size
/opt/freeware/bin/strings
/opt/freeware/doc/binutils-2.14
/opt/freeware/doc/binutils-2.14/COPYING
/opt/freeware/doc/binutils-2.14/COPYING.LIB
/opt/freeware/doc/binutils-2.14/NEWS
/opt/freeware/doc/binutils-2.14/README
/opt/freeware/include/ansidecl.h
/opt/freeware/include/bfd.h
/opt/freeware/include/bfdlink.h
/opt/freeware/include/dis-asm.h
/opt/freeware/include/symcat.h
/opt/freeware/info/as.info.gz
/opt/freeware/info/bfd.info-1.gz
/opt/freeware/info/bfd.info-2.gz
/opt/freeware/info/bfd.info-3.gz
/opt/freeware/info/bfd.info-4.gz
/opt/freeware/info/bfd.info-5.gz
/opt/freeware/info/bfd.info-6.gz
/opt/freeware/info/bfd.info-7.gz
/opt/freeware/info/bfd.info-8.gz
/opt/freeware/info/bfd.info-9.gz
/opt/freeware/info/bfd.info.gz
/opt/freeware/info/binutils.info.gz
/opt/freeware/info/configure.info-1.gz
/opt/freeware/info/configure.info-2.gz
/opt/freeware/info/configure.info-3.gz
/opt/freeware/info/configure.info.gz
/opt/freeware/info/dir.gz
/opt/freeware/info/ld.info.gz
/opt/freeware/info/standards.info.gz
/opt/freeware/lib/libbfd.a
/opt/freeware/lib/libbfd.la
/opt/freeware/lib/libiberty.a
/opt/freeware/lib/libopcodes.a
/opt/freeware/lib/libopcodes.la
/opt/freeware/man/man1/addr2line.1
/opt/freeware/man/man1/ar.1
/opt/freeware/man/man1/as.1
/opt/freeware/man/man1/c++filt.1
/opt/freeware/man/man1/dlltool.1
/opt/freeware/man/man1/ld.1
/opt/freeware/man/man1/nlmconv.1
/opt/freeware/man/man1/nm.1
/opt/freeware/man/man1/objcopy.1
/opt/freeware/man/man1/objdump.1
/opt/freeware/man/man1/ranlib.1
/opt/freeware/man/man1/readelf.1
/opt/freeware/man/man1/size.1
/opt/freeware/man/man1/strings.1
/opt/freeware/man/man1/strip.1
/opt/freeware/man/man1/windres.1
/opt/freeware/share/locale
/opt/freeware/share/locale/da
/opt/freeware/share/locale/da/LC_MESSAGES
/opt/freeware/share/locale/da/LC_MESSAGES/bfd.mo
/opt/freeware/share/locale/da/LC_MESSAGES/binutils.mo
/opt/freeware/share/locale/da/LC_MESSAGES/ld.mo
/opt/freeware/share/locale/da/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/de
/opt/freeware/share/locale/de/LC_MESSAGES
/opt/freeware/share/locale/de/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/es
/opt/freeware/share/locale/es/LC_MESSAGES
/opt/freeware/share/locale/es/LC_MESSAGES/bfd.mo
/opt/freeware/share/locale/es/LC_MESSAGES/binutils.mo
/opt/freeware/share/locale/es/LC_MESSAGES/gas.mo
/opt/freeware/share/locale/es/LC_MESSAGES/ld.mo
/opt/freeware/share/locale/es/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/fr
/opt/freeware/share/locale/fr/LC_MESSAGES
/opt/freeware/share/locale/fr/LC_MESSAGES/bfd.mo
/opt/freeware/share/locale/fr/LC_MESSAGES/binutils.mo
/opt/freeware/share/locale/fr/LC_MESSAGES/gas.mo
/opt/freeware/share/locale/fr/LC_MESSAGES/ld.mo
/opt/freeware/share/locale/fr/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/id
/opt/freeware/share/locale/id/LC_MESSAGES
/opt/freeware/share/locale/id/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/ja
/opt/freeware/share/locale/ja/LC_MESSAGES
/opt/freeware/share/locale/ja/LC_MESSAGES/bfd.mo
/opt/freeware/share/locale/ja/LC_MESSAGES/binutils.mo
/opt/freeware/share/locale/pt_BR
/opt/freeware/share/locale/pt_BR/LC_MESSAGES
/opt/freeware/share/locale/pt_BR/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/ro
/opt/freeware/share/locale/ro/LC_MESSAGES
/opt/freeware/share/locale/ro/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/sv
/opt/freeware/share/locale/sv/LC_MESSAGES
/opt/freeware/share/locale/sv/LC_MESSAGES/bfd.mo
/opt/freeware/share/locale/sv/LC_MESSAGES/binutils.mo
/opt/freeware/share/locale/sv/LC_MESSAGES/ld.mo
/opt/freeware/share/locale/sv/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/tr
/opt/freeware/share/locale/tr/LC_MESSAGES
/opt/freeware/share/locale/tr/LC_MESSAGES/bfd.mo
/opt/freeware/share/locale/tr/LC_MESSAGES/binutils.mo
/opt/freeware/share/locale/tr/LC_MESSAGES/gas.mo
/opt/freeware/share/locale/tr/LC_MESSAGES/ld.mo
/opt/freeware/share/locale/tr/LC_MESSAGES/opcodes.mo
/opt/freeware/share/locale/zh_CN
/opt/freeware/share/locale/zh_CN/LC_MESSAGES
/opt/freeware/share/locale/zh_CN/LC_MESSAGES/bfd.mo
/opt/freeware/share/locale/zh_CN/LC_MESSAGES/binutils.mo
/usr/bin/addr2line
/usr/bin/objcopy
/usr/bin/objdump
/usr/bin/readelf
/usr/linux/bin/as
/usr/linux/bin/c++filt
/usr/linux/bin/nm
/usr/linux/bin/size
/usr/linux/bin/strings
 
bash-3.00#
 
 
 



=CD=F8 =D2=D7 =D3=D0 =B5=C0 =B4=CA =B5=E4 =A3=AD=A3=AD =C8= =AB =C7=F2 =D7=EE =C7=BF =B4=F3 =B5=C4 =C3=E2 =B7=D1 =D3=A2 =BA=BA =BB=A5 = =D2=EB =B4=CA =B5=E4 =A3=A8 =D6=BB =D3=D0 2 =D5=D7 =A3=A9


=CD=F8 =D2=D7 =D3=D0 =B5=C0 =B4=CA =B5=E4 =A3=AD=A3=AD =C8=AB =C7=F2 = =D7=EE =C7=BF =B4=F3 =B5=C4 =C3=E2 =B7=D1 =D3=A2 =BA=BA =BB=A5 =D2=EB =B4= =CA =B5=E4 =A3=A8 =D6=BB =D3=D0 2 =D5=D7 =A3=A9 ------=_Part_176425_5780007.1200301225843-- From MAILER-DAEMON Mon Jan 14 19:24:35 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEZbX-00040s-GC for mharc-bug-binutils@gnu.org; Mon, 14 Jan 2008 19:24:35 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEZbV-0003yP-Ew for bug-binutils@gnu.org; Mon, 14 Jan 2008 19:24:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEZbT-0003wI-9f for bug-binutils@gnu.org; Mon, 14 Jan 2008 19:24:32 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEZbS-0003w8-VY for bug-binutils@gnu.org; Mon, 14 Jan 2008 19:24:31 -0500 Received: from omta02ps.mx.bigpond.com ([144.140.83.154]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JEZbT-00056l-64 for bug-binutils@gnu.org; Mon, 14 Jan 2008 19:24:31 -0500 Received: from oaamta07ps.mx.bigpond.com ([58.174.193.185]) by omta02ps.mx.bigpond.com with ESMTP id <20080115002423.PHRI28980.omta02ps.mx.bigpond.com@oaamta07ps.mx.bigpond.com> for ; Tue, 15 Jan 2008 00:24:23 +0000 Received: from bubble.grove.modra.org ([58.174.193.185]) by oaamta07ps.mx.bigpond.com with ESMTP id <20080115002422.YLVW25612.oaamta07ps.mx.bigpond.com@bubble.grove.modra.org>; Tue, 15 Jan 2008 00:24:22 +0000 Received: by bubble.grove.modra.org (Postfix, from userid 500) id A60B33E43B2; Tue, 15 Jan 2008 10:54:22 +1030 (CST) Date: Tue, 15 Jan 2008 10:54:22 +1030 From: Alan Modra To: bati.deng@163.com Message-ID: <20080115002422.GD10837@bubble.grove.modra.org> Mail-Followup-To: bati.deng@163.com, bug-binutils@gnu.org References: <4511497.665451200301225848.JavaMail.coremail@bj163app46.163.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4511497.665451200301225848.JavaMail.coremail@bj163app46.163.com> User-Agent: Mutt/1.5.9i X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Cc: bug-binutils@gnu.org Subject: Re: Fw:Why there is no ld in binutils package X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jan 2008 00:24:33 -0000 On Mon, Jan 14, 2008 at 05:00:25PM +0800, bati.deng@163.com wrote: > I installed binutils-2.14-3.aix5.1.ppc.rpm on AIX5.3. But I could not find GNU ld tools. The other tools are also existed. We can't answer that. You need to ask whomever provided the rpm. -- Alan Modra Australia Development Lab, IBM From MAILER-DAEMON Mon Jan 14 21:47:44 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEbq4-0001KK-0V for mharc-bug-binutils@gnu.org; Mon, 14 Jan 2008 21:47:44 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEbq2-0001K8-1A for bug-binutils@gnu.org; Mon, 14 Jan 2008 21:47:42 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEbq1-0001Jw-FW for bug-binutils@gnu.org; Mon, 14 Jan 2008 21:47:41 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEbq1-0001Jo-Ch for bug-binutils@gnu.org; Mon, 14 Jan 2008 21:47:41 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEbq0-0000zK-W4 for bug-binutils@gnu.org; Mon, 14 Jan 2008 21:47:41 -0500 Received: (qmail 23734 invoked by uid 48); 15 Jan 2008 02:47:40 -0000 Date: 15 Jan 2008 02:47:40 -0000 Message-ID: <20080115024740.23733.qmail@sourceware.org> From: "Henry at BigFoot dot de" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jan 2008 02:47:42 -0000 ------- Additional Comments From Henry at BigFoot dot de 2008-01-15 02:47 ------- Have compiled binutils-2.18.50-20080109-src.tar.gz with host: Linux, target: mingw32. Filenames with paths works now. Filename with '-' dosn't work. Filename with "Quotes" works in all versions (old and new). $ cat test.rc 2 ICON "dir/foo-bar.ico" -- http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 18:46:35 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEvUI-0002uS-Rf for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 18:46:34 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEvUH-0002so-1U for bug-binutils@gnu.org; Tue, 15 Jan 2008 18:46:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEvUE-0002s9-L5 for bug-binutils@gnu.org; Tue, 15 Jan 2008 18:46:31 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEvUE-0002s6-F5 for bug-binutils@gnu.org; Tue, 15 Jan 2008 18:46:30 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEvUE-0006na-AO for bug-binutils@gnu.org; Tue, 15 Jan 2008 18:46:30 -0500 Received: (qmail 11890 invoked by uid 48); 15 Jan 2008 23:46:29 -0000 Date: 15 Jan 2008 23:46:29 -0000 Message-ID: <20080115234629.11889.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080113115041.5604.schwab@suse.de> References: <20080113115041.5604.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5604] ld crash during eh-frame parsing X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jan 2008 23:46:33 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-15 23:46 ------- http://sourceware.org/ml/binutils-cvs/2008-01/msg00081.html http://sourceware.org/ml/binutils/2008-01/msg00180.html -- What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5604 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 21:33:11 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEy5W-00017h-Vl for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:11 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEy5U-00015Q-Sf for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:08 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEy5R-00010N-2Q for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:08 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEy5Q-00010A-S1 for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:04 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEy5R-0001El-1b for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:05 -0500 Received: (qmail 30049 invoked by uid 48); 16 Jan 2008 02:33:03 -0000 Date: 16 Jan 2008 02:33:03 -0000 Message-ID: <20080116023303.30048.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20071007132207.5141.karvjorm@users.sourceforge.net> References: <20071007132207.5141.karvjorm@users.sourceforge.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5141] 4th range checking mismatch in config/tc-cris.c X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2008 02:33:09 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-16 02:33 ------- Not a bug -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=5141 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 21:33:24 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEy5j-0001NG-RT for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:23 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEy5i-0001LQ-2j for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEy5d-0001Fy-Tp for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEy5d-0001Fh-LQ for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:17 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEy5d-0001Hc-QU for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:17 -0500 Received: (qmail 30094 invoked by uid 48); 16 Jan 2008 02:33:16 -0000 Date: 16 Jan 2008 02:33:16 -0000 Message-ID: <20080116023316.30093.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20071007131846.5140.karvjorm@users.sourceforge.net> References: <20071007131846.5140.karvjorm@users.sourceforge.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5140] Third bit range checking mismatch in config/tc-cris.c X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2008 02:33:22 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-16 02:33 ------- Not a bug -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=5140 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 21:33:41 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEy61-0001hT-FH for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:41 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEy5z-0001fQ-96 for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:39 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEy5x-0001d0-Bq for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:38 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEy5x-0001cf-5g for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:37 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEy5x-0001MW-BM for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:37 -0500 Received: (qmail 30198 invoked by uid 48); 16 Jan 2008 02:33:36 -0000 Date: 16 Jan 2008 02:33:36 -0000 Message-ID: <20080116023336.30197.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20071007130628.5139.karvjorm@users.sourceforge.net> References: <20071007130628.5139.karvjorm@users.sourceforge.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5139] Another bit range checking mismatch in config/tc-cris.c X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2008 02:33:39 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-16 02:33 ------- Not a bug -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=5139 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 21:34:00 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEy6K-00023K-P3 for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 21:34:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEy6I-00021K-NI for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEy6H-00020B-Oo for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:58 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEy6H-000201-KV for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:57 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEy6H-0001RO-Nw for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:33:57 -0500 Received: (qmail 30255 invoked by uid 48); 16 Jan 2008 02:33:56 -0000 Date: 16 Jan 2008 02:33:56 -0000 Message-ID: <20080116023356.30254.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20071007125658.5138.karvjorm@users.sourceforge.net> References: <20071007125658.5138.karvjorm@users.sourceforge.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5138] Bit range mismatch in config/tc-cris.c X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2008 02:33:59 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-16 02:33 ------- Not a bug -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=5138 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 21:39:59 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEyC7-0007OP-RL for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 21:39:59 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEyC6-0007Mf-8k for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:39:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEyC4-0007Jp-BY for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:39:57 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEyC4-0007Jc-61 for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:39:56 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEyC4-0003Gh-DI for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:39:56 -0500 Received: (qmail 31483 invoked by uid 48); 16 Jan 2008 02:39:55 -0000 Date: 16 Jan 2008 02:39:55 -0000 Message-ID: <20080116023955.31482.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20071006212413.5136.karvjorm@users.sourceforge.net> References: <20071006212413.5136.karvjorm@users.sourceforge.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5136] Error message "rel too far BFD_RELOC_8" used with BFD_RELOC_16 X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2008 02:39:58 -0000 -- What |Removed |Added ---------------------------------------------------------------------------- GCC target triplet| |bfin-*-* http://sourceware.org/bugzilla/show_bug.cgi?id=5136 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 21:41:44 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEyDo-0008IW-Pt for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 21:41:44 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEyDn-0008Hd-P7 for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:41:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEyDm-0008GK-Cw for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:41:43 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEyDm-0008GB-4s for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:41:42 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEyDm-0003jP-BA for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:41:42 -0500 Received: (qmail 3589 invoked by uid 48); 16 Jan 2008 02:41:40 -0000 Date: 16 Jan 2008 02:41:40 -0000 Message-ID: <20080116024140.3588.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20071002205305.5091.org.sourceware@pooryorick.com> References: <20071002205305.5091.org.sourceware@pooryorick.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5091] Mis-aligned Makefile args to genscripts.sh X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2008 02:41:44 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-16 02:41 ------- Not reproducable -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |WORKSFORME http://sourceware.org/bugzilla/show_bug.cgi?id=5091 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 21:44:44 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEyGi-0001dg-5U for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 21:44:44 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEyGg-0001bq-LC for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:44:42 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEyGf-0001Zf-94 for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:44:42 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEyGf-0001ZS-0u for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:44:41 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEyGf-0004dP-5n for bug-binutils@gnu.org; Tue, 15 Jan 2008 21:44:41 -0500 Received: (qmail 12234 invoked by uid 48); 16 Jan 2008 02:44:39 -0000 Date: 16 Jan 2008 02:44:39 -0000 Message-ID: <20080116024439.12233.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070901112132.4989.doko@debian.org> References: <20070901112132.4989.doko@debian.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4989] [2.18 regression] build failure on m68k-linux-gnu X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2008 02:44:42 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-16 02:44 ------- As Nick said, this is a system header problem, not a binutils one. -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=4989 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 15 23:30:19 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JEzut-0001gJ-Av for mharc-bug-binutils@gnu.org; Tue, 15 Jan 2008 23:30:19 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEzus-0001el-3f for bug-binutils@gnu.org; Tue, 15 Jan 2008 23:30:18 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEzur-0001dX-B3 for bug-binutils@gnu.org; Tue, 15 Jan 2008 23:30:17 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEzur-0001d7-0T for bug-binutils@gnu.org; Tue, 15 Jan 2008 23:30:17 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JEzuq-00068c-NZ for bug-binutils@gnu.org; Tue, 15 Jan 2008 23:30:16 -0500 Received: (qmail 23692 invoked by uid 48); 16 Jan 2008 04:30:15 -0000 Date: 16 Jan 2008 04:30:15 -0000 Message-ID: <20080116043015.23691.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070618114527.4659.rask@sygehus.dk> References: <20070618114527.4659.rask@sygehus.dk> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/4659] Error: dsp:8 immediate is out of range `enter #4-4' X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2008 04:30:18 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-16 04:30 ------- The cgen implementation for this target only allows a simple integer as the operand of "enter", not an expression. If this is correct assembly syntax, please close this bug. -- http://sourceware.org/bugzilla/show_bug.cgi?id=4659 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 16 23:02:35 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFLxa-00053Z-Oa for mharc-bug-binutils@gnu.org; Wed, 16 Jan 2008 23:02:34 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFLxY-000536-OF for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:02:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFLxW-00052u-B2 for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:02:31 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFLxW-00052r-6Z for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:02:30 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFLxV-0003B1-LF for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:02:29 -0500 Received: (qmail 17689 invoked by uid 48); 17 Jan 2008 04:02:28 -0000 Date: 17 Jan 2008 04:02:28 -0000 Message-ID: <20080117040228.17688.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070620074247.4666.Sushil.Kothawade@kpitcummins.com> References: <20070620074247.4666.Sushil.Kothawade@kpitcummins.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4666] Generates wrong offset for h8 target X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 04:02:33 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-17 04:02 ------- Not a bug. The LMA and VMA addresses are correct, as you can see from objdump -h. You seem to be worried about the PT_LOAD header p_vaddr and p_paddr, although that isn't clear from your report. When vects.o is linked at zero, of course the ELF file header and ELF program headers cannot occupy the same location, so the linker assumes the headers will not be loaded. When vects.o is not present, your .text section starts at 0x400, so the headers can be loaded as usual. They will occupy addresses immediately before .text. The linker could create two PT_LOAD headers, one for the file header and program headers, and one for your .text section, but that is inefficient. Instead you get one PT_LOAD header for both. You might like to experiment with ld -N or ld -n, which should tell ld that headers are not needed. -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=4666 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 16 23:20:45 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFMFB-0004WP-Hp for mharc-bug-binutils@gnu.org; Wed, 16 Jan 2008 23:20:45 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFMFA-0004W8-Hh for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:20:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFMF7-0004VP-3R for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:20:44 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFMF6-0004VK-Rh for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:20:40 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFMF6-0007Zf-GW for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:20:40 -0500 Received: (qmail 30262 invoked by uid 48); 17 Jan 2008 04:20:39 -0000 Date: 17 Jan 2008 04:20:39 -0000 Message-ID: <20080117042039.30261.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070607171621.4600.all_my_junk_e-mail@hotmail.com> References: <20070607171621.4600.all_my_junk_e-mail@hotmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/4600] MinGW32 DLL causes MSVC application initialization failure during runtime X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 04:20:44 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-17 04:20 ------- Not a bug. -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=4600 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 16 23:30:32 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFMOe-0007Ro-BR for mharc-bug-binutils@gnu.org; Wed, 16 Jan 2008 23:30:32 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFMOc-0007RZ-D3 for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:30:30 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFMOb-0007RJ-8g for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:30:30 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFMOb-0007RG-28 for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:30:29 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFMOa-0001I1-Nj for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:30:28 -0500 Received: (qmail 1728 invoked by uid 48); 17 Jan 2008 04:30:27 -0000 Date: 17 Jan 2008 04:30:27 -0000 Message-ID: <20080117043027.1727.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 04:30:30 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-17 04:30 ------- Not a bug. If you don't configure binutils with support for a particular target, ar won't recognize those object files. mipsel-linux doesn't support 64-bit mips by default. Use --enable-targets to add more targets. -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 16 23:46:50 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFMeQ-00066A-9A for mharc-bug-binutils@gnu.org; Wed, 16 Jan 2008 23:46:50 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFMeN-00065n-Kb for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:46:47 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFMeL-000659-EX for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:46:47 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFMeL-000651-8i for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:46:45 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFMeK-0004B8-UC for bug-binutils@gnu.org; Wed, 16 Jan 2008 23:46:45 -0500 Received: (qmail 4750 invoked by uid 48); 17 Jan 2008 04:46:44 -0000 Date: 17 Jan 2008 04:46:44 -0000 Message-ID: <20080117044644.4748.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070424230921.4424.hjl@lucon.org> References: <20070424230921.4424.hjl@lucon.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/4424] Can't link in Linux object files on FreeBSD X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 04:46:48 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-17 04:46 ------- http://sourceware.org/ml/binutils/2007-10/msg00262.html -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=4424 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 17 00:33:22 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFNNS-0004rK-F5 for mharc-bug-binutils@gnu.org; Thu, 17 Jan 2008 00:33:22 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFNNP-0004q9-MN for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:33:19 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFNNO-0004pJ-0R for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:33:19 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFNNN-0004pD-Lr for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:33:17 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFNNN-0005mI-F9 for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:33:17 -0500 Received: (qmail 24819 invoked by uid 48); 17 Jan 2008 05:33:16 -0000 Date: 17 Jan 2008 05:33:16 -0000 Message-ID: <20080117053316.24818.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070415012912.4365.gwoltman@earthlink.net> References: <20070415012912.4365.gwoltman@earthlink.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4365] COFF relocation record bug X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 05:33:20 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-17 05:33 ------- Closing as workaround available and it is a lot of work to fix properly. (We'd need to have a common internal BFD representation for relocations on the different formats.) -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX http://sourceware.org/bugzilla/show_bug.cgi?id=4365 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 17 00:53:04 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFNgV-0005AH-UL for mharc-bug-binutils@gnu.org; Thu, 17 Jan 2008 00:53:04 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFNgS-00058I-R3 for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:53:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFNgQ-00056U-DV for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:52:59 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFNgQ-00056C-2y for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:52:58 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFNgP-0000aZ-QP for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:52:57 -0500 Received: (qmail 24842 invoked by uid 48); 17 Jan 2008 05:52:56 -0000 Date: 17 Jan 2008 05:52:56 -0000 Message-ID: <20080117055256.24841.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070212195317.4030.cebbert@redhat.com> References: <20070212195317.4030.cebbert@redhat.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4030] objdump ignores .gnu_debuglink X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 05:53:01 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-17 05:52 ------- Fixed -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=4030 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 17 00:53:34 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFNh0-0005Vq-3V for mharc-bug-binutils@gnu.org; Thu, 17 Jan 2008 00:53:34 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFNgy-0005UG-2K for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:53:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFNgv-0005RX-Hy for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:53:30 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFNgu-0005RM-Pg for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:53:28 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFNgu-0000iZ-Hd for bug-binutils@gnu.org; Thu, 17 Jan 2008 00:53:28 -0500 Received: (qmail 24920 invoked by uid 48); 17 Jan 2008 05:53:27 -0000 Date: 17 Jan 2008 05:53:27 -0000 Message-ID: <20080117055327.24919.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070228051752.4109.sliedes@cc.hut.fi> References: <20070228051752.4109.sliedes@cc.hut.fi> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/4109] ld crash on broken object file X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 05:53:32 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-17 05:53 ------- ... -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |WONTFIX http://sourceware.org/bugzilla/show_bug.cgi?id=4109 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 17 06:35:38 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFT22-0005EB-Ed for mharc-bug-binutils@gnu.org; Thu, 17 Jan 2008 06:35:38 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFT20-0005Cv-GB for bug-binutils@gnu.org; Thu, 17 Jan 2008 06:35:36 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFT1y-0005BP-MF for bug-binutils@gnu.org; Thu, 17 Jan 2008 06:35:35 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFT1y-0005BI-Fn for bug-binutils@gnu.org; Thu, 17 Jan 2008 06:35:34 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFT1y-0001sY-3v for bug-binutils@gnu.org; Thu, 17 Jan 2008 06:35:34 -0500 Received: (qmail 29572 invoked by uid 48); 17 Jan 2008 11:35:33 -0000 Date: 17 Jan 2008 11:35:33 -0000 Message-ID: <20080117113533.29571.qmail@sourceware.org> From: "aurelien at aurel32 dot net" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 11:35:36 -0000 ------- Additional Comments From aurelien at aurel32 dot net 2008-01-17 11:35 ------- The binutils on which the problem exists is already built with "--enable-targets=mips64el-linux-gnu". It is confirmed by the error message: ar: Matching formats: ecoff-littlemips ecoff-bigmips elf64-tradlittlemips What should be the correct --enable-targets for 64-bit mipsel? -- http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 17 15:50:31 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFbh1-0002h3-Ee for mharc-bug-binutils@gnu.org; Thu, 17 Jan 2008 15:50:31 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFbgz-0002gu-S8 for bug-binutils@gnu.org; Thu, 17 Jan 2008 15:50:29 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFbgx-0002gO-5b for bug-binutils@gnu.org; Thu, 17 Jan 2008 15:50:28 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFbgw-0002gL-Vv for bug-binutils@gnu.org; Thu, 17 Jan 2008 15:50:27 -0500 Received: from mendel.bio.caltech.edu ([131.215.12.38]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JFbgw-000584-Ka for bug-binutils@gnu.org; Thu, 17 Jan 2008 15:50:26 -0500 Received: from nobody by mendel.bio.caltech.edu with local (Exim 4.63) (envelope-from ) id 1JFbgt-0002Gr-PB for bug-binutils@gnu.org; Thu, 17 Jan 2008 12:50:23 -0800 From: "David Mathog" To: bug-binutils@gnu.org X-Mailer: NeoMail 1.24 X-IPAddress: 131.215.12.39 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Message-Id: Date: Thu, 17 Jan 2008 12:50:23 -0800 X-detected-kernel: by monty-python.gnu.org: Solaris 8 (1) Subject: gprof reporting zero times for one program X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 20:50:30 -0000 I'm having issues with gprof reporting empty times on the development version of my network program nettee. For a "normal" program (reads and writes files, no network) the results show reasonable times. In fact, for the last release of nettee (0.1.8) gprof worked too. However for the version I'm working on now gprof only shows 0.0 in the time fields. Software: Mandriva 2007.1 Dual Opterons binutils-2.17.50.0.9-1mdv2007.1 gcc-4.1.2-1mdv2007.1 This works as expected: gcc -pg -O0 -g -lm -o fastaproperties fastaproperties.c gunzip -c /usr/common/BLASTDB/dm_dna.nt.gz |./fastaproperties - gprof -l fastaproperties > goo.txt with output like (sorry about the wrap): Each sample counts as 0.01 seconds. % cumulative self self total time seconds seconds calls Ts/call Ts/call name 56.73 0.60 0.60 main (fastaproperties.c:148 @ 8048ddb) 23.84 0.85 0.25 main (fastaproperties.c:147 @ 8048e15) 9.54 0.95 0.10 main (fastaproperties.c:144 @ 8048d8d) 4.29 0.99 0.05 main (fastaproperties.c:147 @ 8048dd2) Whereas for the development nettee: gcc -Wall -DNOUSLEEP -D_LARGEFILE64_SOURCE -D_POSIX_SOURCE -pg -O0 -g -o nettee nettee.c rb.c nio.c ./nettee -v 255 -next monkey01 -in - stderr.log #this copies that largish file to node monkey01 in about 6 seconds gprof -l nettee >foo.txt produces (again, sorry about the wrap): Flat profile: Each sample counts as 0.01 seconds. no time accumulated % cumulative self self total time seconds seconds calls Ts/call Ts/call name 0.00 0.00 0.00 608 0.00 0.00 rb_shadow_set_reconcile (rb.c:427 @ 8051b70) 0.00 0.00 0.00 330 0.00 0.00 writenbytes_noblock_n (nio.c:1267 @ 805579d) 0.00 0.00 0.00 315 0.00 0.00 readnbytes_noblock_n (nio.c:1323 @ 80558a0) 0.00 0.00 0.00 311 0.00 0.00 write_rb_noblock_n (nio.c:1155 @ 80554fc) 0.00 0.00 0.00 297 0.00 0.00 read_rb_noblock_n (nio.c:1105 @ 805537f) This is not very helpful. The program uses a standard sort of network methodology, where it runs in a while loop using FD_SET, runs select, and then reads/writes from/to those inputs/outputs which select has marked as ready. I know the program spends 99% of its time in a routine called transmit(), where all of this work is performed, but transmit is at the very end of the first list and looks like this: 0.00 0.00 0.00 1 0.00 0.00 transmit (nettee.c:1306 @ 804b7b1) I tried transferring a larger file which took 20 seconds, but still all the fields held 0.00 seconds. Here's the older version: gcc -Wall -DNOUSLEEP -D_LARGEFILE64_SOURCE -D_POSIX_SOURCE -pg -g -o -O0 nettee ../nettee-0.1.8/nettee.c ./nettee -v 255 -next monkey01 -in - stderr.log gprof -l nettee >foo.txt which looks fine: Flat profile: Each sample counts as 0.01 seconds. % cumulative self self total time seconds seconds calls Ts/call Ts/call name 54.29 0.19 0.19 writenbytes (nettee.c:913 @ 804a30a) 30.00 0.30 0.11 writenbytes (nettee.c:914 @ 804a326) 12.86 0.34 0.05 writenbytes (nettee.c:916 @ 804a32c) 2.86 0.35 0.01 writenbytes (nettee.c:912 @ 804a359) 0.00 0.35 0.00 34071 0.00 0.00 readnbytes (nettee.c:933 @ 804a36a) What could be the problem in the new version of this program which is so confusing gprof? I've run nettee in valgrind and it was well behaved running in there (albeit really slow). Thanks, David Mathog mathog@caltech.edu Manager, Sequence Analysis Facility, Biology Division, Caltech From MAILER-DAEMON Fri Jan 18 12:23:02 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFuvm-00045P-9U for mharc-bug-binutils@gnu.org; Fri, 18 Jan 2008 12:23:02 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFuvl-00045K-IG for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:23:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFuvk-000450-1I for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:23:01 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFuvj-00044x-S2 for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:22:59 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFuvj-0000Rc-It for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:22:59 -0500 Received: (qmail 5325 invoked by uid 48); 18 Jan 2008 17:22:58 -0000 Date: 18 Jan 2008 17:22:58 -0000 Message-ID: <20080118172258.5324.qmail@sourceware.org> From: "hjl dot tools at gmail dot com" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jan 2008 17:23:01 -0000 ------- Additional Comments From hjl dot tools at gmail dot com 2008-01-18 17:22 ------- Can you try the current CVS? -- What |Removed |Added ---------------------------------------------------------------------------- CC| |hjl dot tools at gmail dot | |com http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 18 12:38:03 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFvAJ-0005ZN-9S for mharc-bug-binutils@gnu.org; Fri, 18 Jan 2008 12:38:03 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFvAH-0005Z1-Bb for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:38:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFvAF-0005YM-Az for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:38:00 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFvAF-0005YJ-5X for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:37:59 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFvAE-0004ss-L1 for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:37:58 -0500 Received: (qmail 11145 invoked by uid 48); 18 Jan 2008 17:37:57 -0000 Date: 18 Jan 2008 17:37:57 -0000 From: "schwab at suse dot de" To: bug-binutils@gnu.org Message-ID: <20080118173757.5646.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5646] New: Crash in ppc64_elf_tls_optimize X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jan 2008 17:38:01 -0000 0x00000400000b3bfc in ppc64_elf_tls_optimize (obfd=, info=0x100b7e80) at /cvs/binutils/bfd/elf64-ppc.c:7080 7080 for (ent = htab->tls_get_addr->elf.plt.plist; (gdb) p htab.tls_get_addr $2 = (struct ppc_link_hash_entry *) 0x0 Introduced by: * elf64-ppc.c (ppc64_elf_check_relocs): Don't refcount tlsld_got here.. (ppc64_elf_gc_sweep_hook): ..or here.. (ppc64_elf_tls_optimize): ..or here. Make two passes through the relocs, ensuring that tls_get_addr calls follow gd and ld relocs. (allocate_dynrelocs): Refcount tlsld_got here. (ppc64_elf_size_dynamic_sections): Allocate local got and call allocate_dynrelocs before allocating tlsld_got. (ppc64_elf_relocate_section): Remove check that a tls_get_addr call follows gd and ld relocs. -- Summary: Crash in ppc64_elf_tls_optimize Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: normal Priority: P2 Component: ld AssignedTo: unassigned at sources dot redhat dot com ReportedBy: schwab at suse dot de CC: amodra at bigpond dot net dot au,bug-binutils at gnu dot org GCC target triplet: powerpc64-linux http://sourceware.org/bugzilla/show_bug.cgi?id=5646 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 18 12:40:24 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFvCa-00061j-9d for mharc-bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:24 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFvCY-00060g-3o for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFvCV-0005za-Vj for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFvCV-0005zK-HN for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:19 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFvCV-0005Uv-1e for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:19 -0500 Received: (qmail 11754 invoked by uid 48); 18 Jan 2008 17:40:18 -0000 Date: 18 Jan 2008 17:40:18 -0000 Message-ID: <20080118174018.11753.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080118173757.5646.schwab@suse.de> References: <20080118173757.5646.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5646] Crash in ppc64_elf_tls_optimize X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jan 2008 17:40:22 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-18 17:40 ------- Created an attachment (id=2204) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2204&action=view) Testcase part 1 -- http://sourceware.org/bugzilla/show_bug.cgi?id=5646 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 18 12:40:59 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFvD9-0006Mo-ML for mharc-bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:59 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFvD7-0006LH-L3 for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:57 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFvD6-0006KJ-3j for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:57 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFvD5-0006KC-Q7 for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:55 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFvD5-0005gH-CQ for bug-binutils@gnu.org; Fri, 18 Jan 2008 12:40:55 -0500 Received: (qmail 11907 invoked by uid 48); 18 Jan 2008 17:40:54 -0000 Date: 18 Jan 2008 17:40:54 -0000 Message-ID: <20080118174054.11903.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080118173757.5646.schwab@suse.de> References: <20080118173757.5646.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5646] Crash in ppc64_elf_tls_optimize X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jan 2008 17:40:58 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-18 17:40 ------- Created an attachment (id=2205) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2205&action=view) Testcase part 2 -- http://sourceware.org/bugzilla/show_bug.cgi?id=5646 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 18 15:24:11 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JFxl5-0007jJ-E5 for mharc-bug-binutils@gnu.org; Fri, 18 Jan 2008 15:24:11 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFxl3-0007hP-TS for bug-binutils@gnu.org; Fri, 18 Jan 2008 15:24:09 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFxl2-0007eo-3v for bug-binutils@gnu.org; Fri, 18 Jan 2008 15:24:09 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFxl1-0007eK-QN for bug-binutils@gnu.org; Fri, 18 Jan 2008 15:24:07 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JFxl1-0002aK-FZ for bug-binutils@gnu.org; Fri, 18 Jan 2008 15:24:07 -0500 Received: (qmail 10919 invoked by uid 48); 18 Jan 2008 20:24:06 -0000 Date: 18 Jan 2008 20:24:06 -0000 Message-ID: <20080118202406.10918.qmail@sourceware.org> From: "aurelien at aurel32 dot net" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jan 2008 20:24:10 -0000 ------- Additional Comments From aurelien at aurel32 dot net 2008-01-18 20:24 ------- I am not able to reproduce the problem anymore with the latest CVS. I guess the problem has been fixed recently, but I don't know exactly when. Thanks for the fix. -- http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 18 23:52:05 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JG5ga-0004b6-He for mharc-bug-binutils@gnu.org; Fri, 18 Jan 2008 23:52:04 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JG5gX-0004aA-F9 for bug-binutils@gnu.org; Fri, 18 Jan 2008 23:52:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JG5gV-0004ZB-KC for bug-binutils@gnu.org; Fri, 18 Jan 2008 23:52:00 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JG5gV-0004Z2-8X for bug-binutils@gnu.org; Fri, 18 Jan 2008 23:51:59 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JG5gU-0001bR-M2 for bug-binutils@gnu.org; Fri, 18 Jan 2008 23:51:58 -0500 Received: (qmail 18593 invoked by uid 48); 19 Jan 2008 04:51:57 -0000 Date: 19 Jan 2008 04:51:57 -0000 Message-ID: <20080119045157.18592.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080118173757.5646.schwab@suse.de> References: <20080118173757.5646.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5646] Crash in ppc64_elf_tls_optimize X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jan 2008 04:52:03 -0000 -- What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at sources dot |amodra at bigpond dot net |redhat dot com |dot au http://sourceware.org/bugzilla/show_bug.cgi?id=5646 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 18 23:52:15 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JG5gk-0004fK-WE for mharc-bug-binutils@gnu.org; Fri, 18 Jan 2008 23:52:15 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JG5gj-0004en-EQ for bug-binutils@gnu.org; Fri, 18 Jan 2008 23:52:13 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JG5gh-0004e7-A2 for bug-binutils@gnu.org; Fri, 18 Jan 2008 23:52:12 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JG5gh-0004e1-1R for bug-binutils@gnu.org; Fri, 18 Jan 2008 23:52:11 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JG5gg-0001eH-Mh for bug-binutils@gnu.org; Fri, 18 Jan 2008 23:52:10 -0500 Received: (qmail 18671 invoked by uid 48); 19 Jan 2008 04:52:09 -0000 Date: 19 Jan 2008 04:52:09 -0000 Message-ID: <20080119045209.18670.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080118173757.5646.schwab@suse.de> References: <20080118173757.5646.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5646] Crash in ppc64_elf_tls_optimize X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jan 2008 04:52:13 -0000 -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Last reconfirmed|0000-00-00 00:00:00 |2008-01-19 04:52:09 date| | http://sourceware.org/bugzilla/show_bug.cgi?id=5646 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sat Jan 19 05:08:36 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JGAcu-0001HB-06 for mharc-bug-binutils@gnu.org; Sat, 19 Jan 2008 05:08:36 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGAcs-0001GP-Ez for bug-binutils@gnu.org; Sat, 19 Jan 2008 05:08:34 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGAcp-0001F8-RW for bug-binutils@gnu.org; Sat, 19 Jan 2008 05:08:33 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGAcp-0001Es-JE for bug-binutils@gnu.org; Sat, 19 Jan 2008 05:08:31 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JGAcp-0006GY-5O for bug-binutils@gnu.org; Sat, 19 Jan 2008 05:08:31 -0500 Received: (qmail 3047 invoked by uid 48); 19 Jan 2008 10:08:30 -0000 Date: 19 Jan 2008 10:08:30 -0000 Message-ID: <20080119100830.3046.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20080118173757.5646.schwab@suse.de> References: <20080118173757.5646.schwab@suse.de> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5646] Crash in ppc64_elf_tls_optimize X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jan 2008 10:08:34 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-19 10:08 ------- http://sourceware.org/ml/binutils-cvs/2008-01/msg00102.html http://sourceware.org/ml/binutils/2008-01/msg00214.html -- What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5646 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sat Jan 19 06:52:38 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JGCFa-0005Tl-JW for mharc-bug-binutils@gnu.org; Sat, 19 Jan 2008 06:52:38 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGCFY-0005T9-Cw for bug-binutils@gnu.org; Sat, 19 Jan 2008 06:52:36 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGCFW-0005RJ-Qu for bug-binutils@gnu.org; Sat, 19 Jan 2008 06:52:35 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGCFW-0005R9-Ky for bug-binutils@gnu.org; Sat, 19 Jan 2008 06:52:34 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JGCFW-0007qa-AY for bug-binutils@gnu.org; Sat, 19 Jan 2008 06:52:34 -0500 Received: (qmail 6425 invoked by uid 48); 19 Jan 2008 11:52:33 -0000 Date: 19 Jan 2008 11:52:33 -0000 Message-ID: <20080119115233.6424.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jan 2008 11:52:37 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-19 11:52 ------- I can reproduce the problem with current CVS, and since I closed it incorrectly at comment #2, I'm reopening. -- What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID | http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sat Jan 19 08:03:35 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JGDME-0001V2-Si for mharc-bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:35 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGDMD-0001Su-8W for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGDM5-0001Oe-Mm for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:30 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGDM5-0001OV-DB for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:25 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JGDM4-0002vQ-V5 for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:25 -0500 Received: (qmail 2978 invoked by uid 48); 19 Jan 2008 13:03:24 -0000 Date: 19 Jan 2008 13:03:24 -0000 Message-ID: <20080119130324.2977.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jan 2008 13:03:33 -0000 -- What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at sources dot |amodra at bigpond dot net |redhat dot com |dot au Status|REOPENED |NEW http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sat Jan 19 08:03:40 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JGDMK-0001ZS-96 for mharc-bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:40 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGDMI-0001YA-P9 for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:39 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGDMH-0001XM-LR for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:38 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGDMH-0001X0-Db for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:37 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JGDMG-000369-Rr for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:03:37 -0500 Received: (qmail 3005 invoked by uid 48); 19 Jan 2008 13:03:35 -0000 Date: 19 Jan 2008 13:03:35 -0000 Message-ID: <20080119130335.3004.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jan 2008 13:03:39 -0000 -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Last reconfirmed|2008-01-19 11:52:52 |2008-01-19 13:03:35 date| | http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sat Jan 19 08:14:51 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JGDX9-0004q5-MU for mharc-bug-binutils@gnu.org; Sat, 19 Jan 2008 08:14:51 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGDX8-0004p1-Qu for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:14:50 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGDX7-0004n8-Ss for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:14:50 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGDX7-0004mn-Kz for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:14:49 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JGDX7-0005Sc-LJ for bug-binutils@gnu.org; Sat, 19 Jan 2008 08:14:49 -0500 Received: (qmail 13125 invoked by uid 48); 19 Jan 2008 13:14:48 -0000 Date: 19 Jan 2008 13:14:48 -0000 Message-ID: <20080119131448.13124.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jan 2008 13:14:51 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-19 13:14 ------- Created an attachment (id=2206) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2206&action=view) potential fix ar tries to open the archive for all supported bfd targets. Normally, bfd checks that the first object in an archive is the same target as the archive to count as a successful match, but it doesn't do this if the archive has no armap. When one of more of the ecoff targets is supported, the ecoff archive check decides there is no armap (correctly, since there is no ecoff armap), so the ecoff target is incorrectly taken to match. -- http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 20 23:59:22 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JGokk-0007tK-4N for mharc-bug-binutils@gnu.org; Sun, 20 Jan 2008 23:59:22 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGoki-0007tA-Ig for bug-binutils@gnu.org; Sun, 20 Jan 2008 23:59:20 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGokg-0007sl-Pf for bug-binutils@gnu.org; Sun, 20 Jan 2008 23:59:19 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGokg-0007si-N4 for bug-binutils@gnu.org; Sun, 20 Jan 2008 23:59:18 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JGokg-0008Nf-E4 for bug-binutils@gnu.org; Sun, 20 Jan 2008 23:59:18 -0500 Received: (qmail 30602 invoked by uid 48); 21 Jan 2008 04:59:17 -0000 Date: 21 Jan 2008 04:59:17 -0000 Message-ID: <20080121045917.30601.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Jan 2008 04:59:20 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-21 04:59 ------- http://sourceware.org/ml/binutils-cvs/2008-01/msg00109.html http://sourceware.org/ml/binutils/2008-01/msg00222.html -- What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 21 00:44:04 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JGpRz-0006LX-FO for mharc-bug-binutils@gnu.org; Mon, 21 Jan 2008 00:44:03 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGpRx-0006Jr-Gw for bug-binutils@gnu.org; Mon, 21 Jan 2008 00:44:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGpRv-0006Ho-6z for bug-binutils@gnu.org; Mon, 21 Jan 2008 00:44:00 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGpRu-0006HX-RN for bug-binutils@gnu.org; Mon, 21 Jan 2008 00:43:58 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JGpRu-0007Dg-F3 for bug-binutils@gnu.org; Mon, 21 Jan 2008 00:43:58 -0500 Received: (qmail 15251 invoked by uid 48); 21 Jan 2008 05:43:57 -0000 Date: 21 Jan 2008 05:43:57 -0000 Message-ID: <20080121054357.15250.qmail@sourceware.org> From: "amodra at bigpond dot net dot au" To: bug-binutils@gnu.org In-Reply-To: <20061208115040.3679.chombourger@nexwave-solutions.com> References: <20061208115040.3679.chombourger@nexwave-solutions.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/3679] sh_entsize not set for .rel.dyn cause an assert to detonate with mips-linux-elf-ld -shared -q X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Jan 2008 05:44:01 -0000 ------- Additional Comments From amodra at bigpond dot net dot au 2008-01-21 05:43 ------- Closing due to lack of feedback -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |WORKSFORME http://sourceware.org/bugzilla/show_bug.cgi?id=3679 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 21 13:33:15 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JH1SN-0006Le-0Q for mharc-bug-binutils@gnu.org; Mon, 21 Jan 2008 13:33:15 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JH1SL-0006LC-OE for bug-binutils@gnu.org; Mon, 21 Jan 2008 13:33:13 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JH1SK-0006KR-Cd for bug-binutils@gnu.org; Mon, 21 Jan 2008 13:33:13 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JH1SK-0006KL-38 for bug-binutils@gnu.org; Mon, 21 Jan 2008 13:33:12 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JH1SK-0002Gn-4x for bug-binutils@gnu.org; Mon, 21 Jan 2008 13:33:12 -0500 Received: (qmail 18777 invoked by uid 48); 21 Jan 2008 18:33:10 -0000 Date: 21 Jan 2008 18:33:10 -0000 From: "vincent dot riviere at freesbee dot fr" To: bug-binutils@gnu.org Message-ID: <20080121183309.5652.vincent.riviere@freesbee.fr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5652] New: genscripts.sh fails with BASH_LINENO X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Jan 2008 18:33:13 -0000 When compiling the binutils on some systems, the ld link fails. The reason is that the generated emulation C file is empty. By looking at the make output, we can see .../genscripts.sh: line 403: ${BASH_LINENO[0]} + 1: bad substitution However, no error is detected, and the build process of ld continues until the final link, which fails. This happens when $(SHELL) is actually bash compiled with the --enable-minimal- config option. In that case, the variable BASH is set, but the array BASH_LINENO is not supported. The problem is at the bottom of ld/genscripts.sh If it is supported by the shell, line number information is inserted into the generated emulation source, by using BASH_LINENO. However the detection method is wrong. It assumes that if the BASH variable is set, the BASH_LINENO array will be available, which is not always true. -- Summary: genscripts.sh fails with BASH_LINENO Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: normal Priority: P2 Component: ld AssignedTo: unassigned at sources dot redhat dot com ReportedBy: vincent dot riviere at freesbee dot fr CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5652 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 21 13:39:06 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JH1Y2-0000v5-IJ for mharc-bug-binutils@gnu.org; Mon, 21 Jan 2008 13:39:06 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JH1Y1-0000uX-Vf for bug-binutils@gnu.org; Mon, 21 Jan 2008 13:39:06 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JH1Y0-0000sz-LM for bug-binutils@gnu.org; Mon, 21 Jan 2008 13:39:05 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JH1Y0-0000st-FN for bug-binutils@gnu.org; Mon, 21 Jan 2008 13:39:04 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JH1Y0-0003pv-KS for bug-binutils@gnu.org; Mon, 21 Jan 2008 13:39:04 -0500 Received: (qmail 26514 invoked by uid 48); 21 Jan 2008 18:39:03 -0000 Date: 21 Jan 2008 18:39:03 -0000 Message-ID: <20080121183903.26513.qmail@sourceware.org> From: "vincent dot riviere at freesbee dot fr" To: bug-binutils@gnu.org In-Reply-To: <20080121183309.5652.vincent.riviere@freesbee.fr> References: <20080121183309.5652.vincent.riviere@freesbee.fr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5652] genscripts.sh fails with BASH_LINENO X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Jan 2008 18:39:06 -0000 ------- Additional Comments From vincent dot riviere at freesbee dot fr 2008-01-21 18:39 ------- Created an attachment (id=2208) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2208&action=view) genscripts fix This patch fixes the bug. The availability of the BASH_LINENO variable is now checked in a reliable way. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5652 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 23 18:48:50 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JHpKs-00057p-Mu for mharc-bug-binutils@gnu.org; Wed, 23 Jan 2008 18:48:50 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JHpKr-00057e-O8 for bug-binutils@gnu.org; Wed, 23 Jan 2008 18:48:49 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JHpKr-00057Q-70 for bug-binutils@gnu.org; Wed, 23 Jan 2008 18:48:49 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JHpKr-00057N-34 for bug-binutils@gnu.org; Wed, 23 Jan 2008 18:48:49 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JHpKq-00012n-OE for bug-binutils@gnu.org; Wed, 23 Jan 2008 18:48:48 -0500 Received: (qmail 6269 invoked by uid 48); 23 Jan 2008 23:48:47 -0000 Date: 23 Jan 2008 23:48:47 -0000 Message-ID: <20080123234847.6268.qmail@sourceware.org> From: "aurelien at aurel32 dot net" To: bug-binutils@gnu.org In-Reply-To: <20070502205533.4453.aurelien@aurel32.net> References: <20070502205533.4453.aurelien@aurel32.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/4453] ar doesn't recognize ELF64 on mips X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jan 2008 23:48:49 -0000 ------- Additional Comments From aurelien at aurel32 dot net 2008-01-23 23:48 ------- Thanks a lot for the fix. I have just tested and it works fine for me. -- http://sourceware.org/bugzilla/show_bug.cgi?id=4453 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 24 09:36:08 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JI3BY-0008Cg-9L for mharc-bug-binutils@gnu.org; Thu, 24 Jan 2008 09:36:08 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JI3BV-00089z-Ol for bug-binutils@gnu.org; Thu, 24 Jan 2008 09:36:05 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JI3BU-000888-0A for bug-binutils@gnu.org; Thu, 24 Jan 2008 09:36:05 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JI3BT-00087b-Fc for bug-binutils@gnu.org; Thu, 24 Jan 2008 09:36:03 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JI3BT-0007Cd-40 for bug-binutils@gnu.org; Thu, 24 Jan 2008 09:36:03 -0500 Received: (qmail 9306 invoked by uid 48); 24 Jan 2008 14:36:02 -0000 Date: 24 Jan 2008 14:36:02 -0000 From: "martinwguy at yahoo dot it" To: bug-binutils@gnu.org Message-ID: <20080124143601.5662.martinwguy@yahoo.it> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5662] New: Maverick Crunch instructions not recognised with -mfpu=maverick; -mcpu=ep9312 about to be deprecated X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jan 2008 14:36:06 -0000 To emit instructions for the Cirrus Logic Maverick Crunch FPU, at present -mcpu=ep9312 -mfpu=maverick are both necessary; gcc is happy to emit Crunch instructions with just -mcpu=arm920t -mfpu=maverick but gas barfs saying: /tmp/ccTa9oWw.s:31: Error: selected processor does not support `cfldrd mvd1,[r3,#0]' /tmp/ccTa9oWw.s:33: Error: selected processor does not support `cfldrd mvd0,[r3,#0]' /tmp/ccTa9oWw.s:34: Error: selected processor does not support `cfmuld mvd0,mvd1,mvd0' /tmp/ccTa9oWw.s:36: Error: selected processor does not support `cfmvrdl r2,mvd0' /tmp/ccTa9oWw.s:37: Error: selected processor does not support `cfmvrdh r3,mvd0' Now the ep9312 alias is about to be deprecated in gcc-4.3 and removed in gcc-4.4, which will make compiling for Crunch impossible. The most obvious fix is to make gas enable Maverick Crunch instructions in gas when -mfpu=maverick is specified. -- Summary: Maverick Crunch instructions not recognised with - mfpu=maverick; -mcpu=ep9312 about to be deprecated Product: binutils Version: 2.18 Status: NEW Severity: normal Priority: P2 Component: gas AssignedTo: unassigned at sources dot redhat dot com ReportedBy: martinwguy at yahoo dot it CC: bug-binutils at gnu dot org GCC target triplet: arm-linux-gnueabi http://sourceware.org/bugzilla/show_bug.cgi?id=5662 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 25 11:42:40 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JIRdX-00044J-VM for mharc-bug-binutils@gnu.org; Fri, 25 Jan 2008 11:42:40 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIRdW-00044C-8W for bug-binutils@gnu.org; Fri, 25 Jan 2008 11:42:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIRdU-00043z-Br for bug-binutils@gnu.org; Fri, 25 Jan 2008 11:42:37 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIRdU-00043w-5i for bug-binutils@gnu.org; Fri, 25 Jan 2008 11:42:36 -0500 Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JIRdT-0002gX-QA for bug-binutils@gnu.org; Fri, 25 Jan 2008 11:42:35 -0500 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m0PGgRTA030522; Fri, 25 Jan 2008 11:42:27 -0500 Received: from pobox.fab.redhat.com (pobox.fab.redhat.com [10.33.63.12]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m0PGgQAD025710; Fri, 25 Jan 2008 11:42:27 -0500 Received: from [10.32.4.62] (vpn-4-62.str.redhat.com [10.32.4.62]) by pobox.fab.redhat.com (8.13.1/8.13.1) with ESMTP id m0PGgPcS016396; Fri, 25 Jan 2008 11:42:26 -0500 Message-ID: <479A11DF.7050601@redhat.com> Date: Fri, 25 Jan 2008 16:44:15 +0000 From: Nick Clifton Organization: Red Hat: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SL4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 03798903. User-Agent: Thunderbird 1.5.0.12 (X11/20071018) MIME-Version: 1.0 To: David Mathog References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) Cc: bug-binutils@gnu.org Subject: Re: gprof reporting zero times for one program X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jan 2008 16:42:38 -0000 Hi David, > I'm having issues with gprof reporting empty times on the development > version of my network program nettee. > binutils-2.17.50.0.9-1mdv2007.1 For the record there is a 2.18 release out now, although I doubt if this will have any effect on the problem you are seeing. > Whereas for the development nettee: > Each sample counts as 0.01 seconds. > no time accumulated Hmm, well it appears that there is no profiling information in the gmon.out file. Have you checked that a gmon.out file is actually being produced ? And that it is not empty ? My first guess as to the cause would be that you are now linking with startup files which do not enable profiling. Try adding "-v" to the gcc command line of the old and new nettee builds and see if different startup files are being used. You might also try using the gcov program as an alternative to gprof (and --coverage instead of -pg). Cheers Nick From MAILER-DAEMON Fri Jan 25 11:56:11 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JIRqd-00044L-Am for mharc-bug-binutils@gnu.org; Fri, 25 Jan 2008 11:56:11 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIRqb-00042Z-Me for bug-binutils@gnu.org; Fri, 25 Jan 2008 11:56:09 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIRqY-0003zp-Ut for bug-binutils@gnu.org; Fri, 25 Jan 2008 11:56:09 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIRqY-0003zd-Po for bug-binutils@gnu.org; Fri, 25 Jan 2008 11:56:06 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JIRqY-0005uT-Bq for bug-binutils@gnu.org; Fri, 25 Jan 2008 11:56:06 -0500 Received: (qmail 9340 invoked by uid 48); 25 Jan 2008 16:56:05 -0000 Date: 25 Jan 2008 16:56:05 -0000 Message-ID: <20080125165605.9339.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080121183309.5652.vincent.riviere@freesbee.fr> References: <20080121183309.5652.vincent.riviere@freesbee.fr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5652] genscripts.sh fails with BASH_LINENO X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jan 2008 16:56:10 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-25 16:56 ------- Hi Vincent, Thanks for reporting this problem. I am not sure if your proposed patch will work for all versions of /bin/sh however. Correct me if I am wrong, but aren't shell functions a feature of bash rather than all shells ? So wouldn't it be better to just test BASH_LINENO directly ? eg: if test $BASH_LINENO" != "x"; then source_em() Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5652 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 25 12:04:30 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JIRyf-0000Jf-Tl for mharc-bug-binutils@gnu.org; Fri, 25 Jan 2008 12:04:29 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIRyf-0000JR-3T for bug-binutils@gnu.org; Fri, 25 Jan 2008 12:04:29 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIRyd-0000IQ-JP for bug-binutils@gnu.org; Fri, 25 Jan 2008 12:04:28 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIRyd-0000IK-CE for bug-binutils@gnu.org; Fri, 25 Jan 2008 12:04:27 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JIRyc-0007r4-Nf for bug-binutils@gnu.org; Fri, 25 Jan 2008 12:04:27 -0500 Received: (qmail 12451 invoked by uid 48); 25 Jan 2008 17:04:25 -0000 Date: 25 Jan 2008 17:04:25 -0000 From: "hjl dot tools at gmail dot com" To: bug-binutils@gnu.org Message-ID: <20080125170425.5670.hjl.tools@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5670] New: linker is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jan 2008 17:04:29 -0000 This patch: http://sourceware.org/ml/binutils/2008-01/msg00272.html breaks linker. On Linux/Intel64 with gcc 4.1, I got cc1: warnings being treated as errors /export/gnu/src/binutils/binutils/ld/ldlang.c: In function ‘process_insert_statements’: /export/gnu/src/binutils/binutils/ld/ldlang.c:3398: warning: dereferencing type-punned pointer will break strict-aliasing rules /export/gnu/src/binutils/binutils/ld/ldlang.c:3405: warning: dereferencing type-punned pointer will break strict-aliasing rules make[4]: *** [ldlang.o] Error 1 -- Summary: linker is broken Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: critical Priority: P2 Component: ld AssignedTo: unassigned at sources dot redhat dot com ReportedBy: hjl dot tools at gmail dot com CC: amodra at bigpond dot net dot au,bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5670 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 25 12:35:09 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JISSL-0003ZR-QV for mharc-bug-binutils@gnu.org; Fri, 25 Jan 2008 12:35:09 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JISSK-0003Ye-6g for bug-binutils@gnu.org; Fri, 25 Jan 2008 12:35:08 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JISSH-0003YS-RQ for bug-binutils@gnu.org; Fri, 25 Jan 2008 12:35:06 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JISSH-0003YP-LP for bug-binutils@gnu.org; Fri, 25 Jan 2008 12:35:05 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JISSH-0007up-9n for bug-binutils@gnu.org; Fri, 25 Jan 2008 12:35:05 -0500 Received: (qmail 3030 invoked by uid 48); 25 Jan 2008 17:35:04 -0000 Date: 25 Jan 2008 17:35:04 -0000 Message-ID: <20080125173504.3028.qmail@sourceware.org> From: "hjl dot tools at gmail dot com" To: bug-binutils@gnu.org In-Reply-To: <20080125170425.5670.hjl.tools@gmail.com> References: <20080125170425.5670.hjl.tools@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5670] linker is broken X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jan 2008 17:35:08 -0000 ------- Additional Comments From hjl dot tools at gmail dot com 2008-01-25 17:35 ------- Fixed by http://sourceware.org/ml/binutils/2008-01/msg00278.html -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5670 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 25 13:28:30 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JITHy-0002Fy-4o for mharc-bug-binutils@gnu.org; Fri, 25 Jan 2008 13:28:30 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JITHw-0002FY-CT for bug-binutils@gnu.org; Fri, 25 Jan 2008 13:28:28 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JITHv-0002FK-LZ for bug-binutils@gnu.org; Fri, 25 Jan 2008 13:28:27 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JITHv-0002FH-GL for bug-binutils@gnu.org; Fri, 25 Jan 2008 13:28:27 -0500 Received: from mendel.bio.caltech.edu ([131.215.12.38]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JITHv-0007LQ-5N for bug-binutils@gnu.org; Fri, 25 Jan 2008 13:28:27 -0500 Received: from nobody by mendel.bio.caltech.edu with local (Exim 4.63) (envelope-from ) id 1JITHq-0006kF-V5; Fri, 25 Jan 2008 10:28:22 -0800 From: "David Mathog" To: bug-binutils@gnu.org X-Mailer: NeoMail 1.24 X-IPAddress: 131.215.12.39 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Message-Id: Date: Fri, 25 Jan 2008 10:28:22 -0800 X-detected-kernel: by monty-python.gnu.org: Solaris 8 (1) Cc: Subject: Re: gprof reporting zero times for one program X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jan 2008 18:28:28 -0000 Nick Clifton wrote: > > Whereas for the development nettee: > > > Each sample counts as 0.01 seconds. > > no time accumulated > > Hmm, well it appears that there is no profiling information in the gmon.out > file. Have you checked that a gmon.out file is actually being produced ? And > that it is not empty ? gmon.out is created and is not empty. It contains some information as the "called" columns have reasonable values, it is just times that are all zero. > > My first guess as to the cause would be that you are now linking with startup > files which do not enable profiling. I did that for an old version (which will profile) and the new one (which will not) and could not see anything obviously different in the two. Try adding "-v" to the gcc command line > of the old and new nettee builds and see if different startup files are being used. The -v output looks the same, except for the lines in the new one which result from the compile of the two new nio.c and rb.c files, that is, the build for the previous one was: gcc -Wall -DNOUSLEEP -D_LARGEFILE64_SOURCE -D_POSIX_SOURCE -v -pg -g -O0 -v -o nettee nettee.c>previous_v.txt 2>&1 and for the current one: gcc -Wall -DNOUSLEEP -D_LARGEFILE64_SOURCE -D_POSIX_SOURCE -v -pg -g -O0 -o nettee nettee.c rb.c nio.c >current_v.txt 2>&1 ldd shows the same entries for both binaries. I wonder if maybe this isn't some issue related to secondary files rb.c and nio.c? I tried export GPROF_PATH=/(the path) gprof -l nettee and while the times were all zero it did have line numbers in rb.c and nio.c. So it found the source files and could read them ok. Here are the first two useful lines of gprof -l which show that it could resolve line numbers in both nettee.c and rb.c, sorry about the wrap: 0.00 0.00 7339/7339 transmit (nettee.c:1576 @ 804c5c8) [2241] [2] 0.0 0.00 0.00 7339 rb_shadow_set_reconcile (rb.c:427 @ 8052518) [2] The time, self, and children fields are all zero, but the called graph seems about right. > > You might also try using the gcov program as an alternative to gprof (and > --coverage instead of -pg). That ran and provided exactly the same coverage information which was already in gprof, but no times. Maybe I'm missing something but I do not see how to induce gcov to emit execution times per line. gcc -Wall -DNOUSLEEP -D_LARGEFILE64_SOURCE -D_POSIX_SOURCE -coverage -g -O0 -o nettee nettee.c rb.c nio.c (run nettee on a transfer that took 38 seconds) gcov nettee The only change other than the use of multiple files, instead of just one, that I can think of which might be causing this is that the new version of nettee calls alarm(0) and alarm(time) more frequently than did the previous version. If gprof embeds code which uses the same mechanism it might never be seeing its timers going off. Other than that, the rest of the code changes are just that - code changes, there shouldn't be anything in normal logic to confuse gprof. Valgrind runs cleanly so it isn't stomping on memory. Thanks, David Mathog mathog@caltech.edu Manager, Sequence Analysis Facility, Biology Division, Caltech From MAILER-DAEMON Fri Jan 25 15:04:45 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JIUn7-0006b5-1l for mharc-bug-binutils@gnu.org; Fri, 25 Jan 2008 15:04:45 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIUn5-0006YM-Dj for bug-binutils@gnu.org; Fri, 25 Jan 2008 15:04:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIUn3-0006W2-Rp for bug-binutils@gnu.org; Fri, 25 Jan 2008 15:04:43 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIUn3-0006Vr-N2 for bug-binutils@gnu.org; Fri, 25 Jan 2008 15:04:41 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JIUn3-0007xA-7N for bug-binutils@gnu.org; Fri, 25 Jan 2008 15:04:41 -0500 Received: (qmail 23600 invoked by uid 48); 25 Jan 2008 20:04:17 -0000 Date: 25 Jan 2008 20:04:17 -0000 Message-ID: <20080125200417.23599.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080121183309.5652.vincent.riviere@freesbee.fr> References: <20080121183309.5652.vincent.riviere@freesbee.fr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5652] genscripts.sh fails with BASH_LINENO X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jan 2008 20:04:43 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-25 20:04 ------- http://www.faqs.org/faqs/unix-faq/shell/shell-differences/ sh csh ksh bash tcsh zsh rc es Shell functions Y(1) N Y Y N Y Y Y 1. This feature was not in the orginal version, but has since become almost standard. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5652 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Fri Jan 25 17:55:41 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JIXSX-0003mu-QV for mharc-bug-binutils@gnu.org; Fri, 25 Jan 2008 17:55:41 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIXSW-0003mm-4g for bug-binutils@gnu.org; Fri, 25 Jan 2008 17:55:40 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIXSU-0003ma-JR for bug-binutils@gnu.org; Fri, 25 Jan 2008 17:55:39 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIXSU-0003mX-GN for bug-binutils@gnu.org; Fri, 25 Jan 2008 17:55:38 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JIXSU-0005Yh-1s for bug-binutils@gnu.org; Fri, 25 Jan 2008 17:55:38 -0500 Received: (qmail 14803 invoked by uid 48); 25 Jan 2008 22:55:37 -0000 Date: 25 Jan 2008 22:55:37 -0000 Message-ID: <20080125225537.14802.qmail@sourceware.org> From: "vincent dot riviere at freesbee dot fr" To: bug-binutils@gnu.org In-Reply-To: <20080121183309.5652.vincent.riviere@freesbee.fr> References: <20080121183309.5652.vincent.riviere@freesbee.fr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5652] genscripts.sh fails with BASH_LINENO X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jan 2008 22:55:40 -0000 ------- Additional Comments From vincent dot riviere at freesbee dot fr 2008-01-25 22:55 ------- Furthermore: - SVR2 (1984): - shell functions (sh) http://www.faqs.org/faqs/unix-faq/faq/part6/ I didn't find any documentation about POSIX. But bash --posix knows about functions. And dash (ash) knows it, too (without the function keyword). I really think this patch is good and harmless. I put the test in a function because the BASH_LINENO (a bash builtin) exists only in functions ! And as the original code uses functions, it doesn't matter to add one more. The original code uses the BASH_LINENO trick in order to produce #line statements about the original em file into the generated C file. If BASH_LINENO is available, the script use it. If not, it does not produce #line. The BASH_LINENO trick is absolutely not mandatory. It just helps to get better error report when there is a compilation problem in the em file. Regards, Vincent -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |NEW http://sourceware.org/bugzilla/show_bug.cgi?id=5652 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sat Jan 26 14:28:20 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JIqhP-0005mc-Q4 for mharc-bug-binutils@gnu.org; Sat, 26 Jan 2008 14:28:19 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIqhO-0005mH-Cu for bug-binutils@gnu.org; Sat, 26 Jan 2008 14:28:18 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIqhN-0005m3-Az for bug-binutils@gnu.org; Sat, 26 Jan 2008 14:28:17 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIqhN-0005m0-5p for bug-binutils@gnu.org; Sat, 26 Jan 2008 14:28:17 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JIqhM-00065P-Vo for bug-binutils@gnu.org; Sat, 26 Jan 2008 14:28:17 -0500 Received: (qmail 31219 invoked by uid 48); 26 Jan 2008 19:28:16 -0000 Date: 26 Jan 2008 19:28:16 -0000 Message-ID: <20080126192816.31218.qmail@sourceware.org> From: "vincent dot riviere at freesbee dot fr" To: bug-binutils@gnu.org In-Reply-To: <20080121183309.5652.vincent.riviere@freesbee.fr> References: <20080121183309.5652.vincent.riviere@freesbee.fr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5652] genscripts.sh fails with BASH_LINENO X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Jan 2008 19:28:18 -0000 ------- Additional Comments From vincent dot riviere at freesbee dot fr 2008-01-26 19:28 ------- Sorry, there is a typo in the comments: accruate instead of accurate -- http://sourceware.org/bugzilla/show_bug.cgi?id=5652 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 27 09:49:46 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJ8pO-0005nn-1E for mharc-bug-binutils@gnu.org; Sun, 27 Jan 2008 09:49:46 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJ8pL-0005n8-Vg for bug-binutils@gnu.org; Sun, 27 Jan 2008 09:49:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJ8pK-0005mT-7L for bug-binutils@gnu.org; Sun, 27 Jan 2008 09:49:43 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJ8pK-0005mQ-4z for bug-binutils@gnu.org; Sun, 27 Jan 2008 09:49:42 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJ8pJ-0004z8-PL for bug-binutils@gnu.org; Sun, 27 Jan 2008 09:49:42 -0500 Received: (qmail 18021 invoked by uid 48); 27 Jan 2008 14:49:40 -0000 Date: 27 Jan 2008 14:49:40 -0000 From: "nizze86 at hotmail dot com" To: bug-binutils@gnu.org Message-ID: <20080127144939.5681.nizze86@hotmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5681] New: "Error: operands mismatch" for valid operands for move.l in m68k-elf build. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jan 2008 14:49:44 -0000 Building for m68k-elf (mcf5249) gcc outputs the following asm line. move.l (%a2,%a0.l*4),76(%sp) gas gives Error: operands mismatch while this seem ok according to the programmers reference manual. happens both with 2.18 and a snapshot of 2.18.50 from today (080127) -- Summary: "Error: operands mismatch" for valid operands for move.l in m68k-elf build. Product: binutils Version: 2.19 (HEAD) Status: NEW Severity: normal Priority: P2 Component: gas AssignedTo: unassigned at sources dot redhat dot com ReportedBy: nizze86 at hotmail dot com CC: bug-binutils at gnu dot org GCC host triplet: Linux amd 64 GCC target triplet: m68k-elf http://sourceware.org/bugzilla/show_bug.cgi?id=5681 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 27 10:47:26 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJ9jC-0002ad-G5 for mharc-bug-binutils@gnu.org; Sun, 27 Jan 2008 10:47:26 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJ9jB-0002aY-6c for bug-binutils@gnu.org; Sun, 27 Jan 2008 10:47:25 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJ9j8-0002aM-TF for bug-binutils@gnu.org; Sun, 27 Jan 2008 10:47:23 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJ9j8-0002aJ-MJ for bug-binutils@gnu.org; Sun, 27 Jan 2008 10:47:22 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJ9j8-0000Fk-AY for bug-binutils@gnu.org; Sun, 27 Jan 2008 10:47:22 -0500 Received: (qmail 14333 invoked by uid 48); 27 Jan 2008 15:47:21 -0000 Date: 27 Jan 2008 15:47:21 -0000 Message-ID: <20080127154721.14332.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080127144939.5681.nizze86@hotmail.com> References: <20080127144939.5681.nizze86@hotmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5681] "Error: operands mismatch" for valid operands for move.l in m68k-elf build. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jan 2008 15:47:25 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-27 15:47 ------- How did you configure binutils, and how is the assembler invoked? -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5681 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 27 11:30:41 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJAP2-0003Sr-QC for mharc-bug-binutils@gnu.org; Sun, 27 Jan 2008 11:30:40 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJAP1-0003SD-8B for bug-binutils@gnu.org; Sun, 27 Jan 2008 11:30:39 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJAOz-0003RX-KL for bug-binutils@gnu.org; Sun, 27 Jan 2008 11:30:38 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJAOz-0003RR-B5 for bug-binutils@gnu.org; Sun, 27 Jan 2008 11:30:37 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJAOz-0002fV-3R for bug-binutils@gnu.org; Sun, 27 Jan 2008 11:30:37 -0500 Received: (qmail 8545 invoked by uid 48); 27 Jan 2008 16:30:36 -0000 Date: 27 Jan 2008 16:30:36 -0000 Message-ID: <20080127163036.8544.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080127144939.5681.nizze86@hotmail.com> References: <20080127144939.5681.nizze86@hotmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5681] "Error: operands mismatch" for valid operands for move.l in m68k-elf build. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jan 2008 16:30:39 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-27 16:30 ------- Never mind, I was able to reproduce it with -m5249. -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |NEW http://sourceware.org/bugzilla/show_bug.cgi?id=5681 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Sun Jan 27 17:19:11 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJFqJ-0000zk-Tl for mharc-bug-binutils@gnu.org; Sun, 27 Jan 2008 17:19:11 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJFqI-0000xn-ED for bug-binutils@gnu.org; Sun, 27 Jan 2008 17:19:10 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJFqG-0000t3-2V for bug-binutils@gnu.org; Sun, 27 Jan 2008 17:19:08 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJFqG-0000ss-0C for bug-binutils@gnu.org; Sun, 27 Jan 2008 17:19:08 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJFqF-0001Tp-QC for bug-binutils@gnu.org; Sun, 27 Jan 2008 17:19:07 -0500 Received: (qmail 23985 invoked by uid 48); 27 Jan 2008 22:19:06 -0000 Date: 27 Jan 2008 22:19:06 -0000 Message-ID: <20080127221906.23984.qmail@sourceware.org> From: "hjl dot tools at gmail dot com" To: bug-binutils@gnu.org In-Reply-To: <20080102204751.5534.hjl.tools@gmail.com> References: <20080102204751.5534.hjl.tools@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5534] "XXX PTR" isn't checked properly in Intel syntax X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jan 2008 22:19:10 -0000 ------- Additional Comments From hjl dot tools at gmail dot com 2008-01-27 22:19 ------- Fixed by http://sourceware.org/ml/binutils/2008-01/msg00148.html http://sourceware.org/ml/binutils/2008-01/msg00179.html -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5534 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 06:07:55 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJRqF-0007mm-15 for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 06:07:55 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJRqD-0007kM-B0 for bug-binutils@gnu.org; Mon, 28 Jan 2008 06:07:53 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJRqB-0007in-9y for bug-binutils@gnu.org; Mon, 28 Jan 2008 06:07:52 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJRqB-0007iY-42 for bug-binutils@gnu.org; Mon, 28 Jan 2008 06:07:51 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJRqA-0006HB-Oj for bug-binutils@gnu.org; Mon, 28 Jan 2008 06:07:50 -0500 Received: (qmail 22095 invoked by uid 48); 28 Jan 2008 11:07:49 -0000 Date: 28 Jan 2008 11:07:49 -0000 Message-ID: <20080128110749.22094.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080121183309.5652.vincent.riviere@freesbee.fr> References: <20080121183309.5652.vincent.riviere@freesbee.fr> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5652] genscripts.sh fails with BASH_LINENO X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 11:07:53 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 11:07 ------- Hi Vincent, Ok, I am convinved. I have checked your patch in along with this changelog entry. Cheers Nick ld/ChangeLog 2008-01-28 Vincent Riviere PR ld/5652 * genscripts.sh: Check for the existence of BASH_LINENO not just the BASH shell before generating line numbers in the emulation file. -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5652 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 10:00:17 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJVT7-0004L3-KT for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 10:00:17 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJVT6-0004KY-JD for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:00:16 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJVT4-0004JU-Od for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:00:16 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJVT4-0004JI-GW for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:00:14 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJVT4-0001rZ-Gx for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:00:14 -0500 Received: (qmail 16126 invoked by uid 48); 28 Jan 2008 15:00:12 -0000 Date: 28 Jan 2008 15:00:12 -0000 Message-ID: <20080128150012.16123.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080127144939.5681.nizze86@hotmail.com> References: <20080127144939.5681.nizze86@hotmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5681] "Error: operands mismatch" for valid operands for move.l in m68k-elf build. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 15:00:16 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 15:00 ------- Created an attachment (id=2219) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2219&action=view) Fix isa selection for move.l instruction -- http://sourceware.org/bugzilla/show_bug.cgi?id=5681 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 10:02:15 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJVV1-0004xz-4f for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 10:02:15 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJVUz-0004xZ-KP for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:02:13 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJVUz-0004xK-0v for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:02:13 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJVUy-0004xC-TV for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:02:12 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJVUy-0002En-Uq for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:02:13 -0500 Received: (qmail 16704 invoked by uid 48); 28 Jan 2008 15:02:11 -0000 Date: 28 Jan 2008 15:02:11 -0000 Message-ID: <20080128150211.16703.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080127144939.5681.nizze86@hotmail.com> References: <20080127144939.5681.nizze86@hotmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5681] "Error: operands mismatch" for valid operands for move.l in m68k-elf build. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 15:02:14 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 15:02 ------- Hi Nils, OK, I am by no means an m68k expert, but if I have understood the ISA documentation that I have here, the instruction example you showed is valid for ISA_A type processors, but only for the long version of the move instruction. Correct ? If so then the uploaded patch should fix this problem. Would you like to try it out and let me know if it works ? Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5681 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 10:27:30 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJVtS-00074y-OQ for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 10:27:30 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJVtR-00074m-T2 for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:27:29 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJVtN-000732-OG for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:27:29 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJVtN-00072t-JB for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:27:25 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJVtN-0007Vn-Pf for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:27:25 -0500 Received: (qmail 7136 invoked by uid 48); 28 Jan 2008 15:27:24 -0000 Date: 28 Jan 2008 15:27:24 -0000 Message-ID: <20080128152724.7135.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080124143601.5662.martinwguy@yahoo.it> References: <20080124143601.5662.martinwguy@yahoo.it> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5662] Maverick Crunch instructions not recognised with -mfpu=maverick; -mcpu=ep9312 about to be deprecated X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 15:27:30 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 15:27 ------- Created an attachment (id=2220) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2220&action=view) Allow Maverick instruction selection with just -mfpu=maverick -- http://sourceware.org/bugzilla/show_bug.cgi?id=5662 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 10:29:36 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJVvU-0007Wf-91 for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 10:29:36 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJVvS-0007U9-Ed for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:29:34 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJVvR-0007SH-05 for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:29:34 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJVvQ-0007S2-Mc for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:29:32 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJVvQ-0007xM-SI for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:29:33 -0500 Received: (qmail 7694 invoked by uid 48); 28 Jan 2008 15:29:31 -0000 Date: 28 Jan 2008 15:29:31 -0000 Message-ID: <20080128152931.7693.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080124143601.5662.martinwguy@yahoo.it> References: <20080124143601.5662.martinwguy@yahoo.it> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5662] Maverick Crunch instructions not recognised with -mfpu=maverick; -mcpu=ep9312 about to be deprecated X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 15:29:34 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 15:29 ------- Hi Martin, There appears to be two different values used to indicate Maverick instructions in the arm_feature_set structure used in the arm backend to gas. This leads to the confusion that you encountered. If you would like to try the uploaded patch, I think that you will find that -mfpu=maverick will now work on its own. Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5662 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 10:31:34 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJVxN-00085v-Ug for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 10:31:33 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJVxM-00084m-0j for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:31:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJVxL-00084U-1H for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:31:31 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJVxK-00084R-TF for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:31:30 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJVxL-0008Mj-3j for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:31:31 -0500 Received: (qmail 8431 invoked by uid 48); 28 Jan 2008 15:31:29 -0000 Date: 28 Jan 2008 15:31:29 -0000 Message-ID: <20080128153129.8430.qmail@sourceware.org> From: "schwab at suse dot de" To: bug-binutils@gnu.org In-Reply-To: <20080127144939.5681.nizze86@hotmail.com> References: <20080127144939.5681.nizze86@hotmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5681] "Error: operands mismatch" for valid operands for move.l in m68k-elf build. X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 15:31:32 -0000 ------- Additional Comments From schwab at suse dot de 2008-01-28 15:31 ------- According to CFPRM rev 3 (page 4-48) the combination is invalid. ISA_B only adds the #imm,(d16,Ax) variant. -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |INVALID http://sourceware.org/bugzilla/show_bug.cgi?id=5681 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 10:55:59 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJWL1-0002kr-AJ for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 10:55:59 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJWL0-0002kZ-Ex for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:55:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJWKx-0002kA-QO for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:55:57 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJWKx-0002k7-NJ for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:55:55 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJWKx-00063Y-Kz for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:55:55 -0500 Received: (qmail 22414 invoked by uid 48); 28 Jan 2008 15:55:54 -0000 Date: 28 Jan 2008 15:55:54 -0000 Message-ID: <20080128155554.22413.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 15:55:58 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 15:55 ------- Created an attachment (id=2221) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2221&action=view) Also allow hypens in file names -- http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 10:57:06 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJWM6-0002tQ-G3 for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 10:57:06 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJWM4-0002tL-O2 for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:57:04 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJWM2-0002t9-CE for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:57:03 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJWM2-0002t6-7b for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:57:02 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJWM2-0006PD-Bi for bug-binutils@gnu.org; Mon, 28 Jan 2008 10:57:02 -0500 Received: (qmail 22703 invoked by uid 48); 28 Jan 2008 15:57:01 -0000 Date: 28 Jan 2008 15:57:01 -0000 Message-ID: <20080128155701.22702.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 15:57:04 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 15:57 ------- Hi Gordon, This appears to be due to a small omission in Kai's original patch. Kai - is there any reason not to apply the uploaded extension to your patch ? Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 11:07:16 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJWVw-0007Nc-7a for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 11:07:16 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJWVu-0007MB-K4 for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:07:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJWVs-0007LG-41 for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:07:13 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJWVr-0007LD-Ug for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:07:11 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJWVr-0000pj-WE for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:07:12 -0500 Received: (qmail 757 invoked by uid 48); 28 Jan 2008 16:07:10 -0000 Date: 28 Jan 2008 16:07:10 -0000 Message-ID: <20080128160710.754.qmail@sourceware.org> From: "Kai dot Tietz at onevision dot com" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 16:07:14 -0000 ------- Additional Comments From Kai dot Tietz at onevision dot com 2008-01-28 16:07 ------- Sorry, I simply didn't saw it. No there is no reason for that AFAICS. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 11:42:49 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJX4L-00071t-J1 for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 11:42:49 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJX4J-000718-HV for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:42:47 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJX4I-0006zp-3w for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:42:47 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJX4I-0006zi-1c for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:42:46 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJX4H-0003am-VS for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:42:46 -0500 Received: (qmail 809 invoked by uid 48); 28 Jan 2008 16:42:44 -0000 Date: 28 Jan 2008 16:42:44 -0000 Message-ID: <20080128164244.808.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20071229230401.5529.gordon.magnusson@gmail.com> References: <20071229230401.5529.gordon.magnusson@gmail.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5529] windres rejects paths in rc files X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 16:42:47 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 16:42 ------- Hi Kai, OK, I have applied the patch along with this changelog entry. Cheers Nick binutils/ChangeLog 2008-01-28 Nick Clifton PR binutils/5529 * rclex.c (yylex): Also allow the hypen character. -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5529 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 11:58:24 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJXJQ-0003t0-Op for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 11:58:24 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJXJP-0003sf-6a for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:58:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJXJN-0003rZ-EA for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:58:22 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJXJN-0003rR-1o for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:58:21 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJXJM-0006Wa-TY for bug-binutils@gnu.org; Mon, 28 Jan 2008 11:58:21 -0500 Received: (qmail 22237 invoked by uid 48); 28 Jan 2008 16:58:19 -0000 Date: 28 Jan 2008 16:58:19 -0000 Message-ID: <20080128165819.22236.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080113193938.5606.grobian@gentoo.org> References: <20080113193938.5606.grobian@gentoo.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5606] recognition for x86_64-pc-solaris2.10 target X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 16:58:23 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-28 16:58 ------- Hi Fabian, Thanks for the patch, and please accept my apologies for taking so long to review it. The patch is fine and I have applied it to the mainline sources. Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED http://sourceware.org/bugzilla/show_bug.cgi?id=5606 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 12:25:43 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJXjr-00067r-D0 for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 12:25:43 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJXjq-00064y-41 for bug-binutils@gnu.org; Mon, 28 Jan 2008 12:25:42 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJXjo-00060A-7d for bug-binutils@gnu.org; Mon, 28 Jan 2008 12:25:41 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJXjn-0005zq-Rq for bug-binutils@gnu.org; Mon, 28 Jan 2008 12:25:39 -0500 Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JJXjo-000415-6S for bug-binutils@gnu.org; Mon, 28 Jan 2008 12:25:40 -0500 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m0SHPZAa002274; Mon, 28 Jan 2008 12:25:35 -0500 Received: from pobox.fab.redhat.com (pobox.fab.redhat.com [10.33.63.12]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m0SHPZwS025437; Mon, 28 Jan 2008 12:25:35 -0500 Received: from [10.32.4.125] (vpn-4-125.str.redhat.com [10.32.4.125]) by pobox.fab.redhat.com (8.13.1/8.13.1) with ESMTP id m0SHPXDo021135; Mon, 28 Jan 2008 12:25:34 -0500 Message-ID: <479E1085.2060004@redhat.com> Date: Mon, 28 Jan 2008 17:27:33 +0000 From: Nick Clifton Organization: Red Hat: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SL4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 03798903. User-Agent: Thunderbird 1.5.0.12 (X11/20071018) MIME-Version: 1.0 To: David Mathog References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) Cc: bug-binutils@gnu.org Subject: Re: gprof reporting zero times for one program X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 17:25:42 -0000 Hi David, > The only change other than the use of multiple files, instead of > just one, Having multiple source files rather than just one definitely should not be causing this. > that I can think of which might be causing this > is that the new version of nettee calls alarm(0) and alarm(time) > more frequently than did the previous version. If gprof embeds code > which uses the same mechanism it might never be seeing its timers going > off. Hmm, well profiling support is implementation specific, so you may be on to something here. What typically happens when profiling is enabled is that the compiler inserts a call to a special function called __mcount() which takes place during the prologue of every compiled function. __mcount records which function is being called (based on the PC) and the time the call was made, based presumably on a timer/clock reading of some sort. When the program exits special code in the exit handler formats and dumps this information into the gmon.out file. So if you are manipulating the timer/clock then maybe this could be the cause of the problem. Can you try suppressing just that code temporarily to see if this restores proper profiling ? If that does not work or cannot be done easily, can you post a gmon.out file for us to look at. (Compressed of course). I suspect that you have a compiler and/or C library problem here rather than a broken gprof which is refusing to read a proper gmon.out file, but it never hurts to be sure. Cheers Nick From MAILER-DAEMON Mon Jan 28 12:45:58 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJY3S-0008Qx-5Y for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 12:45:58 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJY3Q-0008Q9-0Z for bug-binutils@gnu.org; Mon, 28 Jan 2008 12:45:56 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJY3N-0008Pu-LJ for bug-binutils@gnu.org; Mon, 28 Jan 2008 12:45:54 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJY3N-0008Pr-G1 for bug-binutils@gnu.org; Mon, 28 Jan 2008 12:45:53 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJY3N-0007wD-Qt for bug-binutils@gnu.org; Mon, 28 Jan 2008 12:45:53 -0500 Received: (qmail 23280 invoked by uid 48); 28 Jan 2008 17:45:52 -0000 Date: 28 Jan 2008 17:45:52 -0000 Message-ID: <20080128174552.23279.qmail@sourceware.org> From: "grobian at gentoo dot org" To: bug-binutils@gnu.org In-Reply-To: <20080113193938.5606.grobian@gentoo.org> References: <20080113193938.5606.grobian@gentoo.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5606] recognition for x86_64-pc-solaris2.10 target X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 17:45:56 -0000 ------- Additional Comments From grobian at gentoo dot org 2008-01-28 17:45 ------- Hi Nick, No apologies required. Thanks for applying, do you know in which release of binutils it will end up? PS. I forgot to cross mention the patch for GCC with which I tested it: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30726 -- http://sourceware.org/bugzilla/show_bug.cgi?id=5606 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Mon Jan 28 13:35:35 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJYpT-0003Ut-K5 for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 13:35:35 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJV8z-0005Fn-Jw for bug-binutils@gnu.org; Mon, 28 Jan 2008 09:39:29 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJV8w-0005EG-Qw for bug-binutils@gnu.org; Mon, 28 Jan 2008 09:39:29 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJV8w-0005ED-Lr for bug-binutils@gnu.org; Mon, 28 Jan 2008 09:39:26 -0500 Received: from mpadmx-2.mpa-garching.mpg.de ([130.183.82.42]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JJV8w-00066u-Lm for bug-binutils@gnu.org; Mon, 28 Jan 2008 09:39:26 -0500 Received: from [130.183.84.121] (nco-1.MPA-Garching.MPG.DE [130.183.84.121]) by mpadmx-2.MPA-Garching.MPG.DE (8.13.7/8.13.3) with ESMTP id m0SEdJj3017877; Mon, 28 Jan 2008 15:39:19 +0100 Message-ID: <479DE917.2070209@MPA-Garching.MPG.DE> Date: Mon, 28 Jan 2008 15:39:19 +0100 From: Heinz-Ado Arnolds User-Agent: Thunderbird 1.5.0.13 (X11/20070809) MIME-Version: 1.0 To: bug-binutils@gnu.org Content-Type: multipart/mixed; boundary="------------060907070602000303070606" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0 (mpadmx-2.MPA-Garching.MPG.DE [130.183.82.42]); Mon, 28 Jan 2008 15:39:19 +0100 (CET) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 1) X-Mailman-Approved-At: Mon, 28 Jan 2008 13:35:34 -0500 Cc: Hans-Werner Paulsen Subject: Build problem in binutils2.18 X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 14:39:30 -0000 This is a multi-part message in MIME format. --------------060907070602000303070606 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit configure checks for the release of the installed makeinfo/texinfo. It only recognizes releases from the 4 series in the range 4-9. configure.ac: ... if ${MAKEINFO} --version \ | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then ... this should be changed to ... if ${MAKEINFO} --version \ | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.(4|5|6|7|8|9|11)|[5-9])' >/dev/null 2>&1; then ... Kind regards, Ado -- ________________________________________________________________________ Dipl.-Ing. Heinz-Ado Arnolds MPI fuer Astrophysik Karl-Schwarzschild-Strasse 1 D-85748 Garching Phone: +49/89/30000-2217 FAX : +49/89/30000-2388 email: arnolds[at]MPA-Garching.MPG.DE ________________________________________________________________________ --------------060907070602000303070606 Content-Type: text/plain; name="binutils-2.18.patch.arnolds" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="binutils-2.18.patch.arnolds" diff -cr binutils-2.18.orig/configure binutils-2.18/configure *** binutils-2.18.orig/configure Mon Aug 6 22:29:40 2007 --- binutils-2.18/configure Mon Jan 28 15:36:31 2008 *************** *** 6128,6134 **** # For an installed makeinfo, we require it to be from texinfo 4.4 or # higher, else we use the "missing" dummy. if ${MAKEINFO} --version \ ! | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo" --- 6128,6134 ---- # For an installed makeinfo, we require it to be from texinfo 4.4 or # higher, else we use the "missing" dummy. if ${MAKEINFO} --version \ ! | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.(4|5|6|7|8|9|11)|[5-9])' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo" --------------060907070602000303070606-- From MAILER-DAEMON Mon Jan 28 22:08:38 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJgpy-0003vx-CA for mharc-bug-binutils@gnu.org; Mon, 28 Jan 2008 22:08:38 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJgpw-0003vl-Co for bug-binutils@gnu.org; Mon, 28 Jan 2008 22:08:36 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJgpu-0003vZ-1n for bug-binutils@gnu.org; Mon, 28 Jan 2008 22:08:35 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJgpt-0003vW-Sv for bug-binutils@gnu.org; Mon, 28 Jan 2008 22:08:33 -0500 Received: from omta03sl.mx.bigpond.com ([144.140.92.155]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JJgpt-0000oX-O0 for bug-binutils@gnu.org; Mon, 28 Jan 2008 22:08:34 -0500 Received: from oaamta05sl.mx.bigpond.com ([58.174.193.185]) by omta03sl.mx.bigpond.com with ESMTP id <20080129030828.VINK18906.omta03sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com> for ; Tue, 29 Jan 2008 03:08:28 +0000 Received: from bubble.grove.modra.org ([58.174.193.185]) by oaamta05sl.mx.bigpond.com with ESMTP id <20080129030828.XEBN23867.oaamta05sl.mx.bigpond.com@bubble.grove.modra.org>; Tue, 29 Jan 2008 03:08:28 +0000 Received: by bubble.grove.modra.org (Postfix, from userid 500) id B8DF114A406; Tue, 29 Jan 2008 13:38:27 +1030 (CST) Date: Tue, 29 Jan 2008 13:38:27 +1030 From: Alan Modra To: Heinz-Ado Arnolds Message-ID: <20080129030827.GC21207@bubble.grove.modra.org> Mail-Followup-To: Heinz-Ado Arnolds , bug-binutils@gnu.org, Hans-Werner Paulsen References: <479DE917.2070209@MPA-Garching.MPG.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <479DE917.2070209@MPA-Garching.MPG.DE> User-Agent: Mutt/1.5.9i X-RPD-ScanID: Class unknown; VirusThreatLevel unknown, RefID str=0001.0A010202.479E98AC.00CE,ss=1,fgs=0 X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Cc: bug-binutils@gnu.org, Hans-Werner Paulsen Subject: Re: Build problem in binutils2.18 X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jan 2008 03:08:36 -0000 On Mon, Jan 28, 2008 at 03:39:19PM +0100, Heinz-Ado Arnolds wrote: > configure checks for the release of the installed makeinfo/texinfo. It > only recognizes releases from the 4 series in the range 4-9. Thanks for the report. This has already been fixed in CVS, so will be fixed in the next binutils release. -- Alan Modra Australia Development Lab, IBM From MAILER-DAEMON Tue Jan 29 06:03:26 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJoFS-0004EQ-IR for mharc-bug-binutils@gnu.org; Tue, 29 Jan 2008 06:03:26 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJoFR-0004DD-DY for bug-binutils@gnu.org; Tue, 29 Jan 2008 06:03:25 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJoFP-0004Cj-Vd for bug-binutils@gnu.org; Tue, 29 Jan 2008 06:03:25 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJoFP-0004CV-DY for bug-binutils@gnu.org; Tue, 29 Jan 2008 06:03:23 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJoFP-0000Mq-0b for bug-binutils@gnu.org; Tue, 29 Jan 2008 06:03:23 -0500 Received: (qmail 17343 invoked by alias); 29 Jan 2008 11:03:22 -0000 Date: 29 Jan 2008 11:03:22 -0000 Message-ID: <20080129110322.17342.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080113193938.5606.grobian@gentoo.org> References: <20080113193938.5606.grobian@gentoo.org> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug binutils/5606] recognition for x86_64-pc-solaris2.10 target X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jan 2008 11:03:25 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-29 11:03 ------- Subject: Re: recognition for x86_64-pc-solaris2.10 target Hi Fabian, > do you know in which release of binutils it will end up? 2.19 Cheers Nick -- http://sourceware.org/bugzilla/show_bug.cgi?id=5606 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Tue Jan 29 09:13:09 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJrD3-0005Z1-DR for mharc-bug-binutils@gnu.org; Tue, 29 Jan 2008 09:13:09 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJrD1-0005Yo-Ls for bug-binutils@gnu.org; Tue, 29 Jan 2008 09:13:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJrD0-0005YY-CM for bug-binutils@gnu.org; Tue, 29 Jan 2008 09:13:06 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJrD0-0005YV-1y for bug-binutils@gnu.org; Tue, 29 Jan 2008 09:13:06 -0500 Received: from www.eros-os.com ([75.126.8.162]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JJrCz-0005j9-O9 for bug-binutils@gnu.org; Tue, 29 Jan 2008 09:13:05 -0500 Received: from [192.168.1.46] (dsl092-046-242.blt1.dsl.speakeasy.net [66.92.46.242]) (authenticated bits=0) by www.eros-os.com (8.13.8/8.13.7) with ESMTP id m0TED3HL030198 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 29 Jan 2008 09:13:03 -0500 From: "Jonathan S. Shapiro" To: bug-binutils@gnu.org Content-Type: text/plain Organization: The EROS Group, LLC Date: Tue, 29 Jan 2008 09:13:03 -0500 Message-Id: <1201615983.27645.8.camel@shaptop.om-md.eros-os.com> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 (2.12.3-1.fc8) Content-Transfer-Encoding: 7bit X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) Subject: Correct ELF machine for coldfire? X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jan 2008 14:13:08 -0000 If this is an error, it is the result of a misconfiguration on my part, but I would like to know the right thing before I fix it. We are compiling for Coldfire CFV4E target. Binutils seems to want to set the ELF header em_machine field to EM_68K with about half a dozen options set to indicate instruction set and so forth. Should this be getting set to EM_COLDFIRE, or is the existing behavior correct? shap From MAILER-DAEMON Tue Jan 29 18:04:25 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JJzVB-0001WS-1D for mharc-bug-binutils@gnu.org; Tue, 29 Jan 2008 18:04:25 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JJzV9-0001Ve-Cs for bug-binutils@gnu.org; Tue, 29 Jan 2008 18:04:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JJzV7-0001VS-Sg for bug-binutils@gnu.org; Tue, 29 Jan 2008 18:04:23 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JJzV7-0001VP-QB for bug-binutils@gnu.org; Tue, 29 Jan 2008 18:04:21 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JJzV7-0005fT-OX for bug-binutils@gnu.org; Tue, 29 Jan 2008 18:04:22 -0500 Received: (qmail 29807 invoked by uid 48); 29 Jan 2008 23:04:20 -0000 Date: 29 Jan 2008 23:04:20 -0000 From: "pdd at lgsinnovations dot com" To: bug-binutils@gnu.org Message-ID: <20080129230418.5692.pdd@lgsinnovations.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5692] New: ld segfault linked to bfd elf error X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jan 2008 23:04:23 -0000 Cross compiling uclibc 0.9.29 on i686-pc-linux-gnu-gcc for a arm-softfloat-linux-uclibc ran into a segfault on ld. Turns out the problem is the makefile hands the linker /dev/null for a file, which in turn when the bfd library tries to get the symbols there is no check for a null pointer (as there are no symbols). The simple fix is: --- binutils-2.18.50.0.3/bfd/elf.c.orig 2008-01-29 14:48:45.000000000 -0500 +++ binutils-2.18.50.0.3/bfd/elf.c 2008-01-29 14:52:06.000000000 -0500 @@ -361,6 +361,11 @@ alloc_ext = NULL; alloc_extshndx = NULL; bed = get_elf_backend_data (ibfd); + if (bed == NULL) + { + intsym_buf = NULL; + goto out; + } extsym_size = bed->s->sizeof_sym; amt = symcount * extsym_size; pos = symtab_hdr->sh_offset + symoffset * extsym_size; I expect there probably is a more elegant solution, but this is quick and dirty. Have fun! -- Summary: ld segfault linked to bfd elf error Product: binutils Version: 2.18 Status: NEW Severity: normal Priority: P2 Component: ld AssignedTo: unassigned at sources dot redhat dot com ReportedBy: pdd at lgsinnovations dot com CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=5692 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 30 05:44:55 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKAR5-0002tJ-JP for mharc-bug-binutils@gnu.org; Wed, 30 Jan 2008 05:44:55 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKAR4-0002sF-2Q for bug-binutils@gnu.org; Wed, 30 Jan 2008 05:44:54 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKAR2-0002re-Dj for bug-binutils@gnu.org; Wed, 30 Jan 2008 05:44:53 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKAR2-0002rb-94 for bug-binutils@gnu.org; Wed, 30 Jan 2008 05:44:52 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JKAR1-00061h-Ue for bug-binutils@gnu.org; Wed, 30 Jan 2008 05:44:52 -0500 Received: (qmail 12344 invoked by uid 48); 30 Jan 2008 10:44:51 -0000 Date: 30 Jan 2008 10:44:51 -0000 Message-ID: <20080130104451.12343.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080129230418.5692.pdd@lgsinnovations.com> References: <20080129230418.5692.pdd@lgsinnovations.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5692] ld segfault linked to bfd elf error X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 10:44:54 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-30 10:44 ------- Hi Paul, Can you supply a testcase to reproduce this problem please ? Cheers Nick -- What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING http://sourceware.org/bugzilla/show_bug.cgi?id=5692 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 30 10:19:43 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKEj1-0003sK-8I for mharc-bug-binutils@gnu.org; Wed, 30 Jan 2008 10:19:43 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKEiz-0003s5-MH for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:19:41 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKEiy-0003rm-Vu for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:19:41 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKEiy-0003rc-Oi for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:19:40 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JKEiy-0007aU-Dv for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:19:40 -0500 Received: (qmail 31245 invoked by uid 48); 30 Jan 2008 15:19:39 -0000 Date: 30 Jan 2008 15:19:39 -0000 Message-ID: <20080130151939.31244.qmail@sourceware.org> From: "pdd at lgsinnovations dot com" To: bug-binutils@gnu.org In-Reply-To: <20080129230418.5692.pdd@lgsinnovations.com> References: <20080129230418.5692.pdd@lgsinnovations.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5692] ld segfault linked to bfd elf error X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 15:19:41 -0000 ------- Additional Comments From pdd at lgsinnovations dot com 2008-01-30 15:19 ------- Trivial test case ld --warn-unresolved-symbols -o /dev/null -b binary /dev/null -- http://sourceware.org/bugzilla/show_bug.cgi?id=5692 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Wed Jan 30 10:31:09 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKEu5-0000zg-Kb for mharc-bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:09 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKEu3-0000yq-LJ for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKEu2-0000yN-OM for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:06 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKEu2-0000yI-MB for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:06 -0500 Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JKEu2-0001mK-Fv for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:06 -0500 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m0UFUxDB021075; Wed, 30 Jan 2008 10:30:59 -0500 Received: from pobox.fab.redhat.com (pobox.fab.redhat.com [10.33.63.12]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m0UFUw45025346; Wed, 30 Jan 2008 10:30:58 -0500 Received: from [10.32.4.108] (vpn-4-108.str.redhat.com [10.32.4.108]) by pobox.fab.redhat.com (8.13.1/8.13.1) with ESMTP id m0UFUvlH029311; Wed, 30 Jan 2008 10:30:57 -0500 Message-ID: <47A098AF.8050407@redhat.com> Date: Wed, 30 Jan 2008 15:33:03 +0000 From: Nick Clifton Organization: Red Hat: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SL4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 03798903. User-Agent: Thunderbird 1.5.0.12 (X11/20071018) MIME-Version: 1.0 To: sourceware-bugzilla@sourceware.org References: <20080129230418.5692.pdd@lgsinnovations.com> <20080130151939.31244.qmail@sourceware.org> In-Reply-To: <20080130151939.31244.qmail@sourceware.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) Cc: bug-binutils@gnu.org Subject: Re: [Bug ld/5692] ld segfault linked to bfd elf error X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 15:31:07 -0000 Hi Paul, > Trivial test case > ld --warn-unresolved-symbols -o /dev/null -b binary /dev/null Not trivial enough I am afraid. I tried that with an arm-linux-uclibc toolchain built from today's binutils sources and I just get this output: ld-new: warning: cannot find entry symbol _start; defaulting to 0000000000008034 Now this is on a 64-bit x86_64 linux host, so maybe that has something to do with it. What sort of host are you using, and are you using the latest binutils sources ? Cheers Nick From MAILER-DAEMON Wed Jan 30 10:31:36 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKEuV-0001GT-Uy for mharc-bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:36 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKEuU-0001Ea-Bo for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:34 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKEuS-0001Cz-EJ for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:33 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKEuS-0001Co-2t for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:32 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JKEuR-0001sL-Sz for bug-binutils@gnu.org; Wed, 30 Jan 2008 10:31:32 -0500 Received: (qmail 12272 invoked by alias); 30 Jan 2008 15:31:30 -0000 Date: 30 Jan 2008 15:31:30 -0000 Message-ID: <20080130153130.12271.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080129230418.5692.pdd@lgsinnovations.com> References: <20080129230418.5692.pdd@lgsinnovations.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5692] ld segfault linked to bfd elf error X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 15:31:35 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-30 15:31 ------- Subject: Re: ld segfault linked to bfd elf error Hi Paul, > Trivial test case > ld --warn-unresolved-symbols -o /dev/null -b binary /dev/null Not trivial enough I am afraid. I tried that with an arm-linux-uclibc toolchain built from today's binutils sources and I just get this output: ld-new: warning: cannot find entry symbol _start; defaulting to 0000000000008034 Now this is on a 64-bit x86_64 linux host, so maybe that has something to do with it. What sort of host are you using, and are you using the latest binutils sources ? Cheers Nick -- http://sourceware.org/bugzilla/show_bug.cgi?id=5692 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 31 05:45:43 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKWvP-0001VW-49 for mharc-bug-binutils@gnu.org; Thu, 31 Jan 2008 05:45:43 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKWvM-0001UK-GM for bug-binutils@gnu.org; Thu, 31 Jan 2008 05:45:40 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKWvI-0001QJ-Ea for bug-binutils@gnu.org; Thu, 31 Jan 2008 05:45:39 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKWvI-0001Px-0l for bug-binutils@gnu.org; Thu, 31 Jan 2008 05:45:36 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JKWvI-0008OD-2F for bug-binutils@gnu.org; Thu, 31 Jan 2008 05:45:36 -0500 Received: (qmail 23871 invoked by uid 48); 31 Jan 2008 10:45:34 -0000 Date: 31 Jan 2008 10:45:34 -0000 Message-ID: <20080131104534.23869.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080129230418.5692.pdd@lgsinnovations.com> References: <20080129230418.5692.pdd@lgsinnovations.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5692] ld segfault linked to bfd elf error X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 10:45:41 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-31 10:45 ------- Created an attachment (id=2222) --> (http://sourceware.org/bugzilla/attachment.cgi?id=2222&action=view) ENsure that the elf backend data was obtained before using it. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5692 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 31 05:48:17 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKWxs-0002NB-S0 for mharc-bug-binutils@gnu.org; Thu, 31 Jan 2008 05:48:16 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKWxq-0002M6-9t for bug-binutils@gnu.org; Thu, 31 Jan 2008 05:48:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKWxo-0002LV-Im for bug-binutils@gnu.org; Thu, 31 Jan 2008 05:48:13 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKWxo-0002LP-DY for bug-binutils@gnu.org; Thu, 31 Jan 2008 05:48:12 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JKWxo-0000Y1-FJ for bug-binutils@gnu.org; Thu, 31 Jan 2008 05:48:12 -0500 Received: (qmail 25923 invoked by uid 48); 31 Jan 2008 10:48:11 -0000 Date: 31 Jan 2008 10:48:11 -0000 Message-ID: <20080131104811.25922.qmail@sourceware.org> From: "nickc at redhat dot com" To: bug-binutils@gnu.org In-Reply-To: <20080129230418.5692.pdd@lgsinnovations.com> References: <20080129230418.5692.pdd@lgsinnovations.com> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug ld/5692] ld segfault linked to bfd elf error X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 10:48:14 -0000 ------- Additional Comments From nickc at redhat dot com 2008-01-31 10:48 ------- Hi Paul, I still cannot reproduce this bug, but there is no good reason why we should not check the return value of get_elf_backend_data() so I am going to apply the uploaded variant of your patch. Cheers Nick bfd/ChangeLog 2008-01-31 Nick Clifton PR ld/5692 * elf.c (bfd_elf_get_elf_syms): Check the return value of get_elf_backend_data. -- What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution| |FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=5692 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 31 09:30:43 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKaR9-0006tu-Q2 for mharc-bug-binutils@gnu.org; Thu, 31 Jan 2008 09:30:43 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKaR8-0006tp-FE for bug-binutils@gnu.org; Thu, 31 Jan 2008 09:30:42 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKaR6-0006td-1g for bug-binutils@gnu.org; Thu, 31 Jan 2008 09:30:41 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKaR5-0006ta-R0 for bug-binutils@gnu.org; Thu, 31 Jan 2008 09:30:39 -0500 Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JKaR5-00069R-JD for bug-binutils@gnu.org; Thu, 31 Jan 2008 09:30:39 -0500 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m0VEUc1k018341; Thu, 31 Jan 2008 09:30:38 -0500 Received: from pobox.fab.redhat.com (pobox.fab.redhat.com [10.33.63.12]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m0VEUbep022240; Thu, 31 Jan 2008 09:30:38 -0500 Received: from [10.32.4.120] (vpn-4-120.str.redhat.com [10.32.4.120]) by pobox.fab.redhat.com (8.13.1/8.13.1) with ESMTP id m0VEUaAk003489; Thu, 31 Jan 2008 09:30:37 -0500 Message-ID: <47A1DC0E.3030308@redhat.com> Date: Thu, 31 Jan 2008 14:32:46 +0000 From: Nick Clifton Organization: Red Hat: Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SL4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 03798903. User-Agent: Thunderbird 1.5.0.12 (X11/20071018) MIME-Version: 1.0 To: "Jonathan S. Shapiro" References: <1201615983.27645.8.camel@shaptop.om-md.eros-os.com> In-Reply-To: <1201615983.27645.8.camel@shaptop.om-md.eros-os.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) Cc: bug-binutils@gnu.org Subject: Re: Correct ELF machine for coldfire? X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 14:30:42 -0000 Hi Jonathan, > We are compiling for Coldfire CFV4E target. Binutils seems to want to > set the ELF header em_machine field to EM_68K with about half a dozen > options set to indicate instruction set and so forth. > > Should this be getting set to EM_COLDFIRE, or is the existing behavior > correct? I think that it is a bug. ie the number should be EM_COLDFIRE. Cheers Nick From MAILER-DAEMON Thu Jan 31 14:43:33 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKfJt-0006qW-KP for mharc-bug-binutils@gnu.org; Thu, 31 Jan 2008 14:43:33 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKfJr-0006nL-Gd for bug-binutils@gnu.org; Thu, 31 Jan 2008 14:43:31 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKfJo-0006jk-Mz for bug-binutils@gnu.org; Thu, 31 Jan 2008 14:43:30 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKfJo-0006jb-ID for bug-binutils@gnu.org; Thu, 31 Jan 2008 14:43:28 -0500 Received: from sourceware.org ([209.132.176.174]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1JKfJo-0001Tz-3F for bug-binutils@gnu.org; Thu, 31 Jan 2008 14:43:28 -0500 Received: (qmail 4609 invoked by uid 48); 31 Jan 2008 19:43:27 -0000 Date: 31 Jan 2008 19:43:27 -0000 From: "jsworley at qwest dot net" To: bug-binutils@gnu.org Message-ID: <20080131194326.5704.jsworley@qwest.net> X-Bugzilla-Reason: CC X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Bug gas/5704] New: Invalid warning about predicate WAW for Itanium X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sourceware-bugzilla@sourceware.org List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 19:43:31 -0000 Assembling the following (-xexplicit): .text .global foobar .proc foobar .align 32 foobar: { .mmi cmp.ne p7, p6 = 0, in1 ;; .pred.rel.mutex p7, p6 (p7) cmp.eq p7, p9 = 0, r32 (p6) cmp.eq p6, p9 = 0, r32 } ;; .pred.rel.mutex p7, p6, p9 { .mbb (p9) ld8 r8 = [ r32 ], 8 (p7) br.cond.spnt.few barfoo (p6) br.ret.spnt.few rp } ;; { .mib add r8 = 1, r8 nop 0x0 br.ret.sptk.few rp } ;; .endp foobar yields the following error: foo.s: Assembler messages: foo.s:8: Error: No current frame foo.s:13: Warning: Use of 'cmp.eq' may violate WAW dependency 'PR%, % in 1 - 15' (impliedf), specific resource number is 9 foo.s:13: Warning: Only the first path encountering the conflict is reported foo.s:12: Warning: This is the location of the conflicting usage foo.s:13: Warning: Use of 'cmp.eq' may violate WAW dependency 'PR%, % in 1 - 15' (impliedf), specific resource number is 9 foo.s:13: Warning: Only the first path encountering the conflict is reported foo.s:12: Warning: This is the location of the conflicting usage This warning is invalid because exactly one of the instructions on line 12 and 13 will execute. This bug appears to be in versions 2.18, 2.17, 2.16 and 2.15 (I stopped checking after that). There are no problems with execution, of course. -- Summary: Invalid warning about predicate WAW for Itanium Product: binutils Version: 2.18 Status: NEW Severity: normal Priority: P2 Component: gas AssignedTo: unassigned at sources dot redhat dot com ReportedBy: jsworley at qwest dot net CC: bug-binutils at gnu dot org GCC build triplet: ia64-unknown-linux-gnu GCC host triplet: ia64-unknown-linux-gnu GCC target triplet: ia64-unknown-linux-gnu http://sourceware.org/bugzilla/show_bug.cgi?id=5704 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From MAILER-DAEMON Thu Jan 31 15:22:23 2008 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JKfvT-0001mc-OY for mharc-bug-binutils@gnu.org; Thu, 31 Jan 2008 15:22:23 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKfvS-0001lc-G8 for bug-binutils@gnu.org; Thu, 31 Jan 2008 15:22:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKfvQ-0001kw-PP for bug-binutils@gnu.org; Thu, 31 Jan 2008 15:22:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKfvQ-0001kb-LD for bug-binutils@gnu.org; Thu, 31 Jan 2008 15:22:20 -0500 Received: from nan.false.org ([208.75.86.248]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JKfvQ-00006J-Cc for bug-binutils@gnu.org; Thu, 31 Jan 2008 15:22:20 -0500 Received: from nan.false.org (localhost [127.0.0.1]) by nan.false.org (Postfix) with ESMTP id 9707898217; Thu, 31 Jan 2008 20:22:18 +0000 (GMT) Received: from caradoc.them.org (22.svnf5.xdsl.nauticom.net [209.195.183.55]) by nan.false.org (Postfix) with ESMTP id 6024B98214; Thu, 31 Jan 2008 20:22:18 +0000 (GMT) Received: from drow by caradoc.them.org with local (Exim 4.68) (envelope-from ) id 1JKfvN-0008Oo-EJ; Thu, 31 Jan 2008 15:22:17 -0500 Date: Thu, 31 Jan 2008 15:22:17 -0500 From: Daniel Jacobowitz To: Nick Clifton Message-ID: <20080131202217.GA32225@caradoc.them.org> Mail-Followup-To: Nick Clifton , "Jonathan S. Shapiro" , bug-binutils@gnu.org References: <1201615983.27645.8.camel@shaptop.om-md.eros-os.com> <47A1DC0E.3030308@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <47A1DC0E.3030308@redhat.com> User-Agent: Mutt/1.5.17 (2007-12-11) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) Cc: bug-binutils@gnu.org Subject: Re: Correct ELF machine for coldfire? X-BeenThere: bug-binutils@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNU binutils bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 20:22:22 -0000 On Thu, Jan 31, 2008 at 02:32:46PM +0000, Nick Clifton wrote: > Hi Jonathan, > >> We are compiling for Coldfire CFV4E target. Binutils seems to want to >> set the ELF header em_machine field to EM_68K with about half a dozen >> options set to indicate instruction set and so forth. >> >> Should this be getting set to EM_COLDFIRE, or is the existing behavior >> correct? > > I think that it is a bug. ie the number should be EM_COLDFIRE. The GNU tools never generate EM_COLDFIRE. I think some non-GNU tools do. -- Daniel Jacobowitz CodeSourcery