From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5339 invoked by alias); 26 Jun 2009 13:09:39 -0000 Received: (qmail 5322 invoked by uid 22791); 26 Jun 2009 13:09:38 -0000 X-SWARE-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from rcpt-expgw.biglobe.ne.jp (HELO rcpt-expgw.biglobe.ne.jp) (133.205.19.66) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 26 Jun 2009 13:09:30 +0000 Received: from vc-gw.biglobe.ne.jp by rcpt-expgw.biglobe.ne.jp (kbkr/0208160408) with SMTP id n5QD8rlP022387; Fri, 26 Jun 2009 22:08:53 +0900 Received: from smtp-gw.biglobe.ne.jp ([172.21.238.39]) by vc-gw.biglobe.ne.jp (kbkr/0716090908) with ESMTP id n5QD8rCU003757; Fri, 26 Jun 2009 22:08:53 +0900 X-Biglobe-Sender: Received: from [127.0.0.1] (60.239.19.247 [60.239.19.247]) by smtp-gw.biglobe.ne.jp id WABSAC15F074; Fri, 26 Jun 2009 22:08:53 +0900 (JST) Message-ID: <4A44C865.1040800@mqe.biglobe.ne.jp> Date: Fri, 26 Jun 2009 13:19:00 -0000 From: Seiji Kachi User-Agent: Thunderbird 2.0.0.22 (Windows/20090605) MIME-Version: 1.0 To: Angelo Graziosi CC: Dave Korn , Fortran , GCC Subject: Re: Failure building current 4.5 snapshot on Cygwin References: <4A44A724.6040804@alice.it> <4A44B1F3.3010300@gmail.com> <4A44B3F7.4090401@alice.it> In-Reply-To: <4A44B3F7.4090401@alice.it> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Biglobe-VirusCheck: Fri, 26 Jun 2009 22:08:53 +0900 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2009-06/txt/msg00599.txt.bz2 Angelo Graziosi wrote: > Dave Korn ha scritto: >> Angelo Graziosi wrote: >>> I want to flag the following failure I have seen on Cygwin 1.5 trying to >>> build current 4.5-20090625 gcc snapshot: >> >> So what's in config.log? And what binutils are you using? > > The config logs are attached, while binutils is the current in > Cygwin-1.5, i.e. 20080624-2. > > > Cheers, > Angelo. I have also seen similar faulure, and the reason on my environment is as follows. (1) In my case, gcc build complete successfully. But a.exe which is compiled from the new compiler fails. Error message is $ ./a.exe bash: ./a.exe: Permission denied Source code of a.exe is quite simple: main() { printf("Hello\n"); } (2) This failuer occurres from gcc trunk r148408. r148407 is OK. (3) r148408 removed "#ifdef DEBUG_PUBTYPES_SECTION". r148407 does not generate debug_pubtypes section, but r148408 and later version generates debug_pubtypes section in object when we set debug option. (4) gcc build sequence usually uses debug option. (5) My cygwin environment seems not to accept debug_pubtypes section, and pop up "Permission denied" error. When I reverted "#ifdef DEBUG_PUBTYPES_SECTION" in dearf2out.c, the failuer disappeared. Does this failure occurr only on cygwin? Regards, Seiji Kachi