From owner-freebsd-toolchain@FreeBSD.ORG Sun Aug 3 17:35:25 2014 Return-Path: Delivered-To: freebsd-toolchain@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C23A5EA for ; Sun, 3 Aug 2014 17:35:25 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3398528A0 for ; Sun, 3 Aug 2014 17:35:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s73HZPmL012226 for ; Sun, 3 Aug 2014 17:35:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-toolchain@FreeBSD.org Subject: [Bug 192303] C++11 std::list<>::remove_if() visits elements multiple times Date: Sun, 03 Aug 2014 17:35:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: tijl@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-toolchain@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-toolchain@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Maintenance of FreeBSD's integrated toolchain List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2014 17:35:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192303 Tijl Coosemans changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tijl@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |freebsd-toolchain@FreeBSD.o | |rg -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-toolchain@FreeBSD.ORG Sun Aug 3 19:40:38 2014 Return-Path: Delivered-To: freebsd-toolchain@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCECA80B for ; Sun, 3 Aug 2014 19:40:38 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C46B426D0 for ; Sun, 3 Aug 2014 19:40:38 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s73JecDj010601 for ; Sun, 3 Aug 2014 19:40:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-toolchain@FreeBSD.org Subject: [Bug 192303] C++11 std::list<>::remove_if() visits elements multiple times Date: Sun, 03 Aug 2014 19:40:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: dim@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-toolchain@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-toolchain@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Maintenance of FreeBSD's integrated toolchain List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2014 19:40:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192303 Dimitry Andric changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |In Discussion CC| |dim@FreeBSD.org --- Comment #4 from Dimitry Andric --- The proposed fix is not correct: when calling erase(i, j), the erased range is up to, but *not* including j. Therefore, j must be incremented before calling erase(), and this will also fix the return value put in i. This issue also applies to std::list<>::remove(). I have posted an updated patch to the upstream bug here: http://llvm.org/PR20520 . If it is accepted upstream, I will commit it into our version of libc++, and MFC it in 3 days. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-toolchain@FreeBSD.ORG Sun Aug 3 19:41:23 2014 Return-Path: Delivered-To: freebsd-toolchain@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EE2983F for ; Sun, 3 Aug 2014 19:41:23 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EAF0E26E8 for ; Sun, 3 Aug 2014 19:41:22 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s73JfMmj012303 for ; Sun, 3 Aug 2014 19:41:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-toolchain@FreeBSD.org Subject: [Bug 192303] C++11 std::list<>::remove_if() visits elements multiple times Date: Sun, 03 Aug 2014 19:41:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: dim@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: dim@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-toolchain@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Maintenance of FreeBSD's integrated toolchain List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2014 19:41:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192303 Dimitry Andric changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-toolchain@FreeBSD.o |dim@FreeBSD.org |rg | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-toolchain@FreeBSD.ORG Tue Aug 5 07:00:48 2014 Return-Path: Delivered-To: freebsd-toolchain@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8261B420; Tue, 5 Aug 2014 07:00:48 +0000 (UTC) Received: from mail-pa0-x235.google.com (mail-pa0-x235.google.com [IPv6:2607:f8b0:400e:c03::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 461D22875; Tue, 5 Aug 2014 07:00:48 +0000 (UTC) Received: by mail-pa0-f53.google.com with SMTP id rd3so837205pab.40 for ; Tue, 05 Aug 2014 00:00:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :message-id:references:to; bh=giHKNzW0DZ1sHBGkodsDnCTZP6SRU/ygybOON99L6IQ=; b=j938scUlRdUZWqaMdjD7dAVrNBy0OHDntJ14WM+jy+jf2LHhidDaiAfg67J8CGdqtX 2j9atRg6wlOOiDnqbzLPwA0CTkzNWACtM+W6icrtoNjndqO7sq8FqR4oGwD1L6goHeCF gKlj/yrH0VVeRueYxOZCdtkB31U+1GGqlXp96e7AhH/5TYroibwfgsLUCQgR9G/uMyJr RrAAgqCW8YU9qIgjcbW+btyLRtpsyBdbLs7S+x/U9eA+xQa5kv/y6g3bEJS3bBFp9oTL deH2CI2Kv0x5ye3mHCFya4eomxpd/Pm9f2qauxOZraBtUlKPIjcFFqwbmvQB8DBOJ2WG Xirw== X-Received: by 10.68.137.67 with SMTP id qg3mr1848657pbb.113.1407222047774; Tue, 05 Aug 2014 00:00:47 -0700 (PDT) Received: from ?IPv6:2601:8:ab80:7d6:7d38:a334:f5b3:d383? ([2601:8:ab80:7d6:7d38:a334:f5b3:d383]) by mx.google.com with ESMTPSA id j1sm1408258pdh.31.2014.08.05.00.00.46 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Aug 2014 00:00:46 -0700 (PDT) Content-Type: multipart/signed; boundary="Apple-Mail=_1F3FA187-E16E-49C3-B5E6-41DD50F2542D"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Bootstrap-related build failure with gcc due to change in sctp system headers; not with clang (was Re: svn commit: r269527 - in head: lib/libc/net sys/netinet) From: Garrett Cooper In-Reply-To: <53dfe808.5881.578e6c00@svn.freebsd.org> Date: Tue, 5 Aug 2014 00:00:44 -0700 Message-Id: <7593D813-3049-4CD9-A2D2-7421035010A0@gmail.com> References: <53dfe808.5881.578e6c00@svn.freebsd.org> To: FreeBSD Current X-Mailer: Apple Mail (2.1878.6) Cc: freebsd-toolchain@freebsd.org, Michael Tuexen X-BeenThere: freebsd-toolchain@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Maintenance of FreeBSD's integrated toolchain List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2014 07:00:48 -0000 --Apple-Mail=_1F3FA187-E16E-49C3-B5E6-41DD50F2542D Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 On Aug 4, 2014, at 1:07 PM, Michael Tuexen wrote: > Author: tuexen > Date: Mon Aug 4 20:07:35 2014 > New Revision: 269527 > URL: http://svnweb.freebsd.org/changeset/base/269527 >=20 > Log: > Add support for the SCTP_RECONFIG_SUPPORTED and the corresponding > sysctl controlling the negotiation of the RE-CONFIG extension. >=20 > MFC after: 3 days Hi FreeBSD toolchain, I ran into a build bootstrap problem where it only seems to fail = with gcc after this commit because it=92s picking up installed system = headers instead of the system headers in the obj tree. I=92ve filed = https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D192394 to track this = issue . Thank you, -Garrett --Apple-Mail=_1F3FA187-E16E-49C3-B5E6-41DD50F2542D Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJT4IEcAAoJEMZr5QU6S73eCZAIALFyUEEqBN70PcRLRY/hLprG Vey3N2IfqzzLtGFSssoqkJk/AI/w0wTjkayxFtCX94PdEC2SNWWogSslBc+3sJoY YaanjEoVO1csjU0S6DqFXuBofdrbsWIKkGVi+90BnXhEusZvMrIg6QZzthf9OPEb i3S593S2TC2WaImue4c2hZfK+0STPZQ/W9Mpxg4J+td8PjFwZLbuJxU6Y635VOJO /AIvvJGaJrKf18+UTxwwG+KoQ2Mla1pYdEi0YI0+vJef48DFlUYacGFGXwcf0LSB FBXzWYsIq7/qOsUcvN4VI26hlEb7BIJkvYr5Ku47jF8Fp/xgrIJESsSTdzgfhcU= =qMCp -----END PGP SIGNATURE----- --Apple-Mail=_1F3FA187-E16E-49C3-B5E6-41DD50F2542D-- From owner-freebsd-toolchain@FreeBSD.ORG Thu Aug 7 20:50:24 2014 Return-Path: Delivered-To: freebsd-toolchain@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1A3BB4 for ; Thu, 7 Aug 2014 20:50:24 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8ACB2528 for ; Thu, 7 Aug 2014 20:50:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77KoOmV006361 for ; Thu, 7 Aug 2014 20:50:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-toolchain@FreeBSD.org Subject: [Bug 192490] [build] race condition with multiple instances of cleandir in subdirectories; results in failure like "rm: fts_read: No such file or directory" Date: Thu, 07 Aug 2014 20:50:25 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yaneurabeya@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-toolchain@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Maintenance of FreeBSD's integrated toolchain List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 20:50:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192490 yaneurabeya@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd-toolchain@FreeBSD.o | |rg, jmmv@FreeBSD.org -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-toolchain@FreeBSD.ORG Thu Aug 7 20:53:56 2014 Return-Path: Delivered-To: freebsd-toolchain@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED73C16E for ; Thu, 7 Aug 2014 20:53:56 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D42FA25CA for ; Thu, 7 Aug 2014 20:53:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s77KruUW035726 for ; Thu, 7 Aug 2014 20:53:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-toolchain@FreeBSD.org Subject: [Bug 192490] [build] race condition with multiple instances of cleandir in subdirectories; results in failure like "rm: fts_read: No such file or directory" Date: Thu, 07 Aug 2014 20:53:56 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yaneurabeya@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-toolchain@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Maintenance of FreeBSD's integrated toolchain List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 20:53:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192490 --- Comment #1 from yaneurabeya@gmail.com --- Created attachment 145486 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145486&action=edit Build log >From http://kyua3.nyi.freebsd.org/head/data/0-LATEST/output.log -- You are receiving this mail because: You are on the CC list for the bug.