public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64
@ 2015-08-26 18:26 ismail at i10z dot com
  2015-08-27  7:40 ` [Bug bootstrap/67363] [6 Regression] " rguenth at gcc dot gnu.org
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: ismail at i10z dot com @ 2015-08-26 18:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

            Bug ID: 67363
           Summary: r227188 breaks build for mingw-w64
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ismail at i10z dot com
  Target Milestone: ---

After r227188 mingw-w64 build on Linux fails with:

../../combined-6.0.0/gcc/gcc.c: In member function 'void
env_manager::xput(const char*)':
../../combined-6.0.0/gcc/gcc.c:126:50: error: 'strndup' was not
declared in this scope
       kv.m_key = strndup (string, equals - string);
                                                  ^
../../combined-6.0.0/gcc/gcc.c: In member function 'void
env_manager::restore()':
../../combined-6.0.0/gcc/gcc.c:154:2: error: '::setenv' has not been declared
  ::setenv (item->m_key, item->m_value, 1);
  ^
../../combined-6.0.0/gcc/gcc.c:156:2: error: '::unsetenv' has not been declared
  ::unsetenv (item->m_key);
  ^


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
@ 2015-08-27  7:40 ` rguenth at gcc dot gnu.org
  2015-08-28 20:00 ` egall at gwmail dot gwu.edu
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-08-27  7:40 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |6.0
            Summary|r227188 breaks build for    |[6 Regression] r227188
                   |mingw-w64                   |breaks build for mingw-w64


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
  2015-08-27  7:40 ` [Bug bootstrap/67363] [6 Regression] " rguenth at gcc dot gnu.org
@ 2015-08-28 20:00 ` egall at gwmail dot gwu.edu
  2015-08-31 11:15 ` ro at gcc dot gnu.org
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: egall at gwmail dot gwu.edu @ 2015-08-28 20:00 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

Eric Gallager <egall at gwmail dot gwu.edu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |egall at gwmail dot gwu.edu

--- Comment #1 from Eric Gallager <egall at gwmail dot gwu.edu> ---
It also breaks building on darwin versions before 11. (I'm on darwin 9
currently, but I'm sure it would happen on darwin 10, too; strndup() wasn't
added to the darwin Libc till Lion...)


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
  2015-08-27  7:40 ` [Bug bootstrap/67363] [6 Regression] " rguenth at gcc dot gnu.org
  2015-08-28 20:00 ` egall at gwmail dot gwu.edu
@ 2015-08-31 11:15 ` ro at gcc dot gnu.org
  2015-08-31 11:20 ` ro at gcc dot gnu.org
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ro at gcc dot gnu.org @ 2015-08-31 11:15 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|dmalcolm at redhat dot com         |ro at gcc dot gnu.org

--- Comment #5 from Rainer Orth <ro at gcc dot gnu.org> ---
Mine.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (2 preceding siblings ...)
  2015-08-31 11:15 ` ro at gcc dot gnu.org
@ 2015-08-31 11:20 ` ro at gcc dot gnu.org
  2015-08-31 11:22 ` ro at gcc dot gnu.org
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ro at gcc dot gnu.org @ 2015-08-31 11:20 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #6 from Rainer Orth <ro at gcc dot gnu.org> ---
Author: ro
Date: Mon Aug 31 11:19:42 2015
New Revision: 227337

URL: https://gcc.gnu.org/viewcvs?rev=227337&root=gcc&view=rev
Log:
Avoid strndup in gcc.c (PR bootstrap/67363)

        PR bootstrap/67363
        * gcc.c (env_manager::xput): Replace strndup by xstrndup.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/gcc.c


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (3 preceding siblings ...)
  2015-08-31 11:20 ` ro at gcc dot gnu.org
@ 2015-08-31 11:22 ` ro at gcc dot gnu.org
  2015-08-31 11:25 ` ismail at i10z dot com
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ro at gcc dot gnu.org @ 2015-08-31 11:22 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #7 from Rainer Orth <ro at gcc dot gnu.org> ---
Fixed for gcc 6.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (4 preceding siblings ...)
  2015-08-31 11:22 ` ro at gcc dot gnu.org
@ 2015-08-31 11:25 ` ismail at i10z dot com
  2015-08-31 11:55 ` ismail at i10z dot com
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ismail at i10z dot com @ 2015-08-31 11:25 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

İsmail Dönmez <ismail at i10z dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |---

--- Comment #8 from İsmail Dönmez <ismail at i10z dot com> ---
(In reply to Rainer Orth from comment #7)
> Fixed for gcc 6.

Your patch didnt fix the mingw part. Reopening.
>From gcc-bugs-return-495974-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 31 11:28:50 2015
Return-Path: <gcc-bugs-return-495974-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102087 invoked by alias); 31 Aug 2015 11:28:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101783 invoked by uid 48); 31 Aug 2015 11:28:46 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/66786] [5/6 Regression] ICE: Segmentation fault
Date: Mon, 31 Aug 2015 11:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc short_desc everconfirmed
Message-ID: <bug-66786-4-Qd2k58quzQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66786-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66786-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-08/txt/msg02116.txt.bz2
Content-length: 719

https://gcc.gnu.org/bugzilla/show_bug.cgi?idf786

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-08-31
                 CC|                            |jason at gcc dot gnu.org
            Summary|[6 Regression] ICE:         |[5/6 Regression] ICE:
                   |Segmentation fault          |Segmentation fault
     Ever confirmed|0                           |1

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Started with r214396.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (5 preceding siblings ...)
  2015-08-31 11:25 ` ismail at i10z dot com
@ 2015-08-31 11:55 ` ismail at i10z dot com
  2015-09-04 16:22 ` danglin at gcc dot gnu.org
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ismail at i10z dot com @ 2015-08-31 11:55 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #9 from İsmail Dönmez <ismail at i10z dot com> ---
Looks like on MinGW putenv has to be used instead of setenv/unsetenv, dmalcolm
can you please have a look? I know MinGW is a Tier-NotSupported platform but it
was at least compiling before this change.
>From gcc-bugs-return-495981-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 31 11:57:15 2015
Return-Path: <gcc-bugs-return-495981-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29752 invoked by alias); 31 Aug 2015 11:57:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29231 invoked by uid 55); 31 Aug 2015 11:57:10 -0000
From: "paul.richard.thomas at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67174] [6 regression] gfortran.dg/do_iterator.f90 FAILs
Date: Mon, 31 Aug 2015 11:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: paul.richard.thomas at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67174-4-chX7V14HNk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67174-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67174-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-08/txt/msg02123.txt.bz2
Content-length: 1878

https://gcc.gnu.org/bugzilla/show_bug.cgi?idg174

--- Comment #4 from paul.richard.thomas at gmail dot com <paul.richard.thomas at gmail dot com> ---
Dear Rainer,

I am not so sure that it is a kernel bug but,  rather, it could be a
gcc bug that is affected by differences in the kernel. It seems to me
that this has crept in since the gfortran error.c was completely
reworked to use the gcc error reporting mechanisms. There is now a
flag, which determines whether or not the line where the error occurs
is displayed or not. I suspect that something is causing this flag to
be set or reset. I might not have time today but will certainly test
this in the next day or two.

Regards

Paul

On 31 August 2015 at 13:36, ro at gcc dot gnu.org
<gcc-bugzilla@gcc.gnu.org> wrote:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?idg174
>
> Rainer Orth <ro at gcc dot gnu.org> changed:
>
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>              Status|WAITING                     |RESOLVED
>          Resolution|---                         |INVALID
>
> --- Comment #3 from Rainer Orth <ro at gcc dot gnu.org> ---
> (In reply to Paul Thomas from comment #1)
>
>> If you run the testcase outside of the testsuite does the error appear but
>> without the offending line? I have been plagued by such a problem with an
>> F2008 patch that I have prepared.
>
> It does indeed.  It occured to me that this might be the same problem which
> causes
>
> FAIL: gcc.dg/unroll-2.c  (test for warnings, line 24)
>
> on Solaris 11 only (S10 and S12 are both fine).  This seems to be a kernel bug
> causing truncation of pty output.
>
> I might xfail both testcases to avoid the noise if this can be confirmed.
>
>   Rainer
>
> --
> You are receiving this mail because:
> You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (6 preceding siblings ...)
  2015-08-31 11:55 ` ismail at i10z dot com
@ 2015-09-04 16:22 ` danglin at gcc dot gnu.org
  2015-09-10  9:55 ` sebastian.huber@embedded-brains.de
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: danglin at gcc dot gnu.org @ 2015-09-04 16:22 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

John David Anglin <danglin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |danglin at gcc dot gnu.org

--- Comment #10 from John David Anglin <danglin at gcc dot gnu.org> ---
The setenv and unsetenv issue also affects hppa*-*-hpux*.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (7 preceding siblings ...)
  2015-09-04 16:22 ` danglin at gcc dot gnu.org
@ 2015-09-10  9:55 ` sebastian.huber@embedded-brains.de
  2015-09-10 15:56 ` danglin at gcc dot gnu.org
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: sebastian.huber@embedded-brains.de @ 2015-09-10  9:55 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

Sebastian Huber <sebastian.huber@embedded-brains.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sebastian.huber@embedded-br
                   |                            |ains.de

--- Comment #11 from Sebastian Huber <sebastian.huber@embedded-brains.de> ---
Yes, the mingw build is still broken.

Git has compatibility functions for setenv() and unsetenv():

https://github.com/git/git/blob/master/compat/setenv.c
https://github.com/git/git/blob/master/compat/unsetenv.c

Maybe something like this can be used in GCC as well.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (8 preceding siblings ...)
  2015-09-10  9:55 ` sebastian.huber@embedded-brains.de
@ 2015-09-10 15:56 ` danglin at gcc dot gnu.org
  2015-09-10 17:01 ` ismail at i10z dot com
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: danglin at gcc dot gnu.org @ 2015-09-10 15:56 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #12 from John David Anglin <danglin at gcc dot gnu.org> ---
Created attachment 36321
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=36321&action=edit
Patch

I sent this change this morning to gcc-patches but it seems to have
disappeared.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (9 preceding siblings ...)
  2015-09-10 15:56 ` danglin at gcc dot gnu.org
@ 2015-09-10 17:01 ` ismail at i10z dot com
  2015-09-10 17:56 ` dave.anglin at bell dot net
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ismail at i10z dot com @ 2015-09-10 17:01 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #13 from İsmail Dönmez <ismail at i10z dot com> ---
(In reply to John David Anglin from comment #12)
> Created attachment 36321 [details]
> Patch
> 
> I sent this change this morning to gcc-patches but it seems to have
> disappeared.

The patch declares the functions but those functions do not exist on mingw-w64,
seems to be this will just fail with an undefined symbol error.
>From gcc-bugs-return-496906-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 10 17:13:47 2015
Return-Path: <gcc-bugs-return-496906-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22327 invoked by alias); 10 Sep 2015 17:13:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22289 invoked by uid 55); 10 Sep 2015 17:13:43 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67526] ICE on missing end parenthesis in substring construct
Date: Thu, 10 Sep 2015 17:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67526-4-H4K6UWwzTs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67526-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67526-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-09/txt/msg00884.txt.bz2
Content-length: 668

https://gcc.gnu.org/bugzilla/show_bug.cgi?idg526

--- Comment #4 from kargl at gcc dot gnu.org ---
Author: kargl
Date: Thu Sep 10 17:13:11 2015
New Revision: 227651

URL: https://gcc.gnu.org/viewcvs?rev"7651&root=gcc&view=rev
Log:
2015-09-09  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/67526
        * gfortran.dg/pr67526.f90: New test.

2015-09-09  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/67526
        * expr.c (gfc_check_init_expr): Do not dereference a NULL pointer.

Added:
    trunk/gcc/testsuite/gfortran.dg/pr67526.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/expr.c
    trunk/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (10 preceding siblings ...)
  2015-09-10 17:01 ` ismail at i10z dot com
@ 2015-09-10 17:56 ` dave.anglin at bell dot net
  2015-09-10 17:58 ` ismail at i10z dot com
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dave.anglin at bell dot net @ 2015-09-10 17:56 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #14 from dave.anglin at bell dot net ---
On 2015-09-10 1:01 PM, ismail at i10z dot com wrote:
> The patch declares the functions but those functions do not exist on mingw-w64,
> seems to be this will just fail with an undefined symbol error.
The routines are in liberty and the patch assumes that that they are 
built.  If that's not the
case on mingw-w64, then they will have to be provided by some other means.

Dave


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (11 preceding siblings ...)
  2015-09-10 17:56 ` dave.anglin at bell dot net
@ 2015-09-10 17:58 ` ismail at i10z dot com
  2015-09-10 22:52 ` danglin at gcc dot gnu.org
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ismail at i10z dot com @ 2015-09-10 17:58 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #15 from İsmail Dönmez <ismail at i10z dot com> ---
(In reply to dave.anglin from comment #14)
> On 2015-09-10 1:01 PM, ismail at i10z dot com wrote:
> > The patch declares the functions but those functions do not exist on mingw-w64,
> > seems to be this will just fail with an undefined symbol error.
> The routines are in liberty and the patch assumes that that they are 
> built.  If that's not the
> case on mingw-w64, then they will have to be provided by some other means.

Ah that makes sense, thanks!
>From gcc-bugs-return-496910-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 10 18:07:42 2015
Return-Path: <gcc-bugs-return-496910-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55161 invoked by alias); 10 Sep 2015 18:07:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55113 invoked by uid 55); 10 Sep 2015 18:07:39 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67526] ICE on missing end parenthesis in substring construct
Date: Thu, 10 Sep 2015 18:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67526-4-5PIxbmqxPs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67526-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67526-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-09/txt/msg00888.txt.bz2
Content-length: 732

https://gcc.gnu.org/bugzilla/show_bug.cgi?idg526

--- Comment #5 from kargl at gcc dot gnu.org ---
Author: kargl
Date: Thu Sep 10 18:07:07 2015
New Revision: 227655

URL: https://gcc.gnu.org/viewcvs?rev"7655&root=gcc&view=rev
Log:
2015-09-09  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/67526
        * gfortran.dg/pr67526.f90: New test.

2015-09-09  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/67526
        * expr.c (gfc_check_init_expr): Do not dereference a NULL pointer.

Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr67526.f90
Modified:
    branches/gcc-5-branch/gcc/fortran/ChangeLog
    branches/gcc-5-branch/gcc/fortran/expr.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (12 preceding siblings ...)
  2015-09-10 17:58 ` ismail at i10z dot com
@ 2015-09-10 22:52 ` danglin at gcc dot gnu.org
  2015-09-10 23:09 ` danglin at gcc dot gnu.org
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: danglin at gcc dot gnu.org @ 2015-09-10 22:52 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #16 from John David Anglin <danglin at gcc dot gnu.org> ---
Author: danglin
Date: Thu Sep 10 22:52:08 2015
New Revision: 227666

URL: https://gcc.gnu.org/viewcvs?rev=227666&root=gcc&view=rev
Log:
        PR bootstrap/67363
        * configure.ac: Check if setenv and unsetenv are declared.
        * configure: Rebuild.
        * config.in: Rebuild.
        * system.h: Declare setenv and unsetenv if not declared.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config.in
    trunk/gcc/configure
    trunk/gcc/configure.ac
    trunk/gcc/system.h


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (13 preceding siblings ...)
  2015-09-10 22:52 ` danglin at gcc dot gnu.org
@ 2015-09-10 23:09 ` danglin at gcc dot gnu.org
  2015-09-11 22:49 ` rainer@emrich-ebersheim.de
  2015-09-11 22:52 ` rainer@emrich-ebersheim.de
  16 siblings, 0 replies; 18+ messages in thread
From: danglin at gcc dot gnu.org @ 2015-09-10 23:09 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #17 from John David Anglin <danglin at gcc dot gnu.org> ---
Fixed on hppa*-*-hpux*.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (14 preceding siblings ...)
  2015-09-10 23:09 ` danglin at gcc dot gnu.org
@ 2015-09-11 22:49 ` rainer@emrich-ebersheim.de
  2015-09-11 22:52 ` rainer@emrich-ebersheim.de
  16 siblings, 0 replies; 18+ messages in thread
From: rainer@emrich-ebersheim.de @ 2015-09-11 22:49 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

Rainer Emrich <rainer@emrich-ebersheim.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rainer@emrich-ebersheim.de

--- Comment #19 from Rainer Emrich <rainer@emrich-ebersheim.de> ---
*** Bug 67546 has been marked as a duplicate of this bug. ***


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug bootstrap/67363] [6 Regression] r227188 breaks build for mingw-w64
  2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
                   ` (15 preceding siblings ...)
  2015-09-11 22:49 ` rainer@emrich-ebersheim.de
@ 2015-09-11 22:52 ` rainer@emrich-ebersheim.de
  16 siblings, 0 replies; 18+ messages in thread
From: rainer@emrich-ebersheim.de @ 2015-09-11 22:52 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67363

--- Comment #20 from Rainer Emrich <rainer@emrich-ebersheim.de> ---
(In reply to İsmail Dönmez from comment #18)
> (In reply to John David Anglin from comment #17)
> > Fixed on hppa*-*-hpux*.
> 
> Also fixes mingw-w64, thank you!

Confirmed, bootstraps on native x84_64-w64-mingw32 again.
>From gcc-bugs-return-497020-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 11 23:06:34 2015
Return-Path: <gcc-bugs-return-497020-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89599 invoked by alias); 11 Sep 2015 23:06:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89575 invoked by uid 48); 11 Sep 2015 23:06:31 -0000
From: "mm.masaeli at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67556] New: Regex \w doesn't support the unicode character <U+200C>
Date: Fri, 11 Sep 2015 23:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mm.masaeli at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-67556-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-09/txt/msg00998.txt.bz2
Content-length: 761

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67556

            Bug ID: 67556
           Summary: Regex \w doesn't support the unicode character
                    <U+200C>
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mm.masaeli at gmail dot com
  Target Milestone: ---

The Unicode character 200C is called "nimfaseleh" in Persian language and it is
important to deal with it as a regular character. The trick is, it never comes
in the beginning or ending of a word. For example in a word like the following,
it is crucial:
می‌بینم
>From gcc-bugs-return-497021-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 11 23:13:03 2015
Return-Path: <gcc-bugs-return-497021-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93808 invoked by alias); 11 Sep 2015 23:13:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93756 invoked by uid 48); 11 Sep 2015 23:13:00 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67556] Regex \w doesn't support the unicode character <U+200C>
Date: Fri, 11 Sep 2015 23:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: MOVED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67556-4-avRpzLNqfO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67556-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67556-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-09/txt/msg00999.txt.bz2
Content-length: 529

https://gcc.gnu.org/bugzilla/show_bug.cgi?idg556

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |MOVED

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The regex interface is not part of gcc unless you are talking about the one in
libstdc++. Also no testcase. J


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2015-09-11 22:52 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-26 18:26 [Bug bootstrap/67363] New: r227188 breaks build for mingw-w64 ismail at i10z dot com
2015-08-27  7:40 ` [Bug bootstrap/67363] [6 Regression] " rguenth at gcc dot gnu.org
2015-08-28 20:00 ` egall at gwmail dot gwu.edu
2015-08-31 11:15 ` ro at gcc dot gnu.org
2015-08-31 11:20 ` ro at gcc dot gnu.org
2015-08-31 11:22 ` ro at gcc dot gnu.org
2015-08-31 11:25 ` ismail at i10z dot com
2015-08-31 11:55 ` ismail at i10z dot com
2015-09-04 16:22 ` danglin at gcc dot gnu.org
2015-09-10  9:55 ` sebastian.huber@embedded-brains.de
2015-09-10 15:56 ` danglin at gcc dot gnu.org
2015-09-10 17:01 ` ismail at i10z dot com
2015-09-10 17:56 ` dave.anglin at bell dot net
2015-09-10 17:58 ` ismail at i10z dot com
2015-09-10 22:52 ` danglin at gcc dot gnu.org
2015-09-10 23:09 ` danglin at gcc dot gnu.org
2015-09-11 22:49 ` rainer@emrich-ebersheim.de
2015-09-11 22:52 ` rainer@emrich-ebersheim.de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).