From owner-freebsd-standards@freebsd.org Sun May 29 21:00:39 2016 Return-Path: Delivered-To: freebsd-standards@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB839B54CB0 for ; Sun, 29 May 2016 21:00:39 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B806F110C for ; Sun, 29 May 2016 21:00:39 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u4TL015U082026 for ; Sun, 29 May 2016 21:00:39 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201605292100.u4TL015U082026@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: freebsd-standards@FreeBSD.org Subject: Problem reports for freebsd-standards@FreeBSD.org that need special attention Date: Sun, 29 May 2016 21:00:39 +0000 X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 May 2016 21:00:40 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- New | 193594 | stddef.h should define max_align_t Open | 191586 | FreeBSD doesn't validate negative edgecases in bi 2 problems total for which you should take action. From owner-freebsd-standards@freebsd.org Tue May 31 00:09:56 2016 Return-Path: Delivered-To: freebsd-standards@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0947B54E3D for ; Tue, 31 May 2016 00:09:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98A3818DF for ; Tue, 31 May 2016 00:09:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u4V09uRL009443 for ; Tue, 31 May 2016 00:09:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-standards@FreeBSD.org Subject: [Bug 209877] #defining lint trashes _Noreturn, violating C11 Date: Tue, 31 May 2016 00:09:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: eggert@cs.ucla.edu X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-standards@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 May 2016 00:09:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209877 Bug ID: 209877 Summary: #defining lint trashes _Noreturn, violating C11 Product: Base System Version: 10.3-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: standards Assignee: freebsd-standards@FreeBSD.org Reporter: eggert@cs.ucla.edu A user ran into a problem when building bleeding-edge Emacs and I tracked it down to a compatibility issue with FreeBSD's use of the 'lint' macro in C. = You can see the original problem report in (origina= lly about Cygwin, but look for "FreeBSD" later on in the bug report). FreeBSD doesn't conform to the C standard in this area. To reproduce the conformance bug, compile the following three-line file t.c: #define lint 1 #include _Noreturn int x; This C program violates a constraint because _Noreturn is allowed only on function declarations. The C compiler is therefore required to issue a diagnostic. However, the shell command 'cc -std=3Dc11 -S t.c' silently igno= res the _Noreturn. The problem is that FreeBSD headers in /usr/include define _Noreturn to be empty if the symbol 'lint' is defined. But 'lint' is in user space, and use= rs programs are allowed to use it for whatever they want. That's what Emacs was doing, and other programs are like Emacs in this respect, so the problem wo= n't go away by my simply modifying GNU Emacs to use some symbol other than 'lin= t'. I suppose that one possible fix would be for cdefs.h to define its own symb= ol _FreeBSD_Noreturn instead of defining _Noreturn, and for other headers to u= se _FreeBSD_Noreturn rather than _Noreturn. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-standards@freebsd.org Tue May 31 17:09:04 2016 Return-Path: Delivered-To: freebsd-standards@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A7CDB55F15 for ; Tue, 31 May 2016 17:09:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B07B1D16 for ; Tue, 31 May 2016 17:09:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u4VH94Nw085365 for ; Tue, 31 May 2016 17:09:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-standards@FreeBSD.org Subject: [Bug 209907] _ascii_wcsnrtombs neglects to set src on EILSEQ error Date: Tue, 31 May 2016 17:09:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: roel@abittechnical.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-standards@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 May 2016 17:09:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209907 Bug ID: 209907 Summary: _ascii_wcsnrtombs neglects to set src on EILSEQ error Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: standards Assignee: freebsd-standards@FreeBSD.org Reporter: roel@abittechnical.com Created attachment 170884 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D170884&action= =3Dedit Test program that reproduces the issue I noticed that when using wcsrtombs, if a character is encountered that can= not be converted, it sets errno to EILSEQ and returns (size_t)-1. However *src still points to the original character, even though it should point to the character after the one that conversion stopped at. I've attached a test program that reproduces the issue. The expected output is: inptr - in: 7 The actual output is: inptr - in: 0 The culprit appears to be in _ascii_wcsnrtombs, line 181 in lib/libc/locale/ascii.c: it's missing a "*src =3D s;" statement before the return. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-standards@freebsd.org Tue May 31 18:14:50 2016 Return-Path: Delivered-To: freebsd-standards@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E5AFB55E9A for ; Tue, 31 May 2016 18:14:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F19A131C for ; Tue, 31 May 2016 18:14:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u4VIEnUd083221 for ; Tue, 31 May 2016 18:14:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-standards@FreeBSD.org Subject: [Bug 209907] _ascii_wcsnrtombs neglects to set src on EILSEQ error Date: Tue, 31 May 2016 18:14:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ache@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ache@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 May 2016 18:14:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209907 Andrey Chernov changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-standards@FreeBSD.o |ache@FreeBSD.org |rg | CC| |ache@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-standards@freebsd.org Wed Jun 1 16:14:26 2016 Return-Path: Delivered-To: freebsd-standards@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2AEF6B615CA for ; Wed, 1 Jun 2016 16:14:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B50B1EE0 for ; Wed, 1 Jun 2016 16:14:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u51GEPMr000946 for ; Wed, 1 Jun 2016 16:14:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-standards@FreeBSD.org Subject: [Bug 209940] FreeBSD installer for ZFS destroys RAID and fails (and hangs) Date: Wed, 01 Jun 2016 16:14:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: elofu17@hotmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-standards@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2016 16:14:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209940 Bug ID: 209940 Summary: FreeBSD installer for ZFS destroys RAID and fails (and hangs) Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: standards Assignee: freebsd-standards@FreeBSD.org Reporter: elofu17@hotmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 170919 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D170919&action= =3Dedit GEOM error in the FreeBSD installer during ZFS install In the FreeBSD 10.1 installer, I can't install FreeBSD using ZFS on a BIOS Software RAID1 volume. When the installer tries to handle the raid/r0 device (gpart, etc), it dest= roys the RAID and then shows an error message, and the installer fail. Therefore I downloaded the latest FreeBSD-11.0-ALPHA1-amd64-20160528-r300895-disc1.iso to see if the latest version of FreeBSD behave better. Unfortunetly it doesn't. How to reproduce: Boot a machine (in my case a Supermicro) with two harddrives. Enter BIOS setup and configure the SATA controller as a RAID controller. Reboot and press ctrl-i to enter the "Intel Software RAID" setup. Create a RAID1 volume containing the two HDDs. Boot the FreeBSD 11.0 installer, select keyboard, enter a hostname and clear all distribution packages. Now choose to install using ZFS. Under 'Pool Type/Disks:', select "stripe" and then select the RAID1 volume "raid/r0", like this: [ ] ada0 [ ] ada1 [x] raid/r0 The ZFS-installer now says "stripe: 1 disks" which is correct, so proceed w= ith the installation. Are you sure? Yes Now the same thing happens as in 10.1: The Intel software RAID1 you just created is destroyed. On FreeBSD 11.0, nothing more happen. The installer has stopped. No error messages, no nothing. (see attachment #1: geom.jpg and #2: the debug-screen (alt-F3) of the installer) (For your information: On FreeBSD 10.1 the same thing happens (the raid is destroyed), but at least an error is generated, so one can exit the install= er. On FreeBSD 11.0 the installer just hangs.) What I expected/wanted: I wanted FreeBSD 11.0 to be installed onto my soft RAID1 volume as an ordin= ary striped ZFS. ( I want to use a standard RAID1 of two full disks. I do not want to use ZFS mirror since this is not full disk duplication, and the recovery of a broken ZFS-mirror-disk is a much bigger hassle (manually duplicate partition structures, manually save a bootloader, manually resilv= er the zfs-mirror) than recovering an ordinary RAID1 disk. I want ZFS, so using UFS instead is not a workaround. ) Can this problem in the ZFS-installer please be fixed before the official FreeBSD 11.0 is released? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-standards@freebsd.org Wed Jun 1 16:16:35 2016 Return-Path: Delivered-To: freebsd-standards@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5AAC1B6165A for ; Wed, 1 Jun 2016 16:16:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B3981055 for ; Wed, 1 Jun 2016 16:16:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u51GGZN3004356 for ; Wed, 1 Jun 2016 16:16:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-standards@FreeBSD.org Subject: [Bug 209940] FreeBSD installer for ZFS destroys RAID and fails (and hangs) Date: Wed, 01 Jun 2016 16:16:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: elofu17@hotmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-standards@FreeBSD.org 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: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2016 16:16:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209940 --- Comment #1 from elofu17@hotmail.com --- Created attachment 170920 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D170920&action= =3Dedit Debug-screen in the FreeBSD installer during ZFS install --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-standards@freebsd.org Sat Jun 4 14:49:52 2016 Return-Path: Delivered-To: freebsd-standards@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D6437B6ADB5 for ; Sat, 4 Jun 2016 14:49:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6141110B for ; Sat, 4 Jun 2016 14:49:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u54Enqbb035473 for ; Sat, 4 Jun 2016 14:49:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-standards@FreeBSD.org Subject: [Bug 192115] devel/libcxxrt: Demangling issues with libcxxrt.so.1 Date: Sat, 04 Jun 2016 14:49:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 9.2-RELEASE X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vlad-fbsd@acheronmedia.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-standards@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: dependson short_desc flagtypes.name cc keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jun 2016 14:49:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D192115 Vladimir Krstulja changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |209937 Summary|Demangling issues with |devel/libcxxrt: Demangling |libcxxrt.so.1 |issues with libcxxrt.so.1 Flags| |maintainer-feedback?(mokhi6 | |4@gmail.com) CC| |mokhi64@gmail.com Keywords| |needs-qa --- Comment #3 from Vladimir Krstulja --- Guys, does this problem still exist? The upstream reports fixed. Adding pro= per maintainer-feedback request now, as it was never set to begin with (so no timeout). There are open PRs to upgrade libcxxrt, so I'm setting a dependen= cy relationship. Please correct if wrong. Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209937 [Bug 209937] devel/libcxxrt: Upgrade to a more recent version (from 2013122= 5 to 20160529) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-standards@freebsd.org Sat Jun 4 15:00:51 2016 Return-Path: Delivered-To: freebsd-standards@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D8C2B69486 for ; Sat, 4 Jun 2016 15:00:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4DE4F14C0 for ; Sat, 4 Jun 2016 15:00:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u54F0ov9078766 for ; Sat, 4 Jun 2016 15:00:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-standards@FreeBSD.org Subject: [Bug 192115] Demangling issues with libcxxrt.so.1 Date: Sat, 04 Jun 2016 15:00:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: standards X-Bugzilla-Version: 9.2-RELEASE X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vlad-fbsd@acheronmedia.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-standards@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: dependson flagtypes.name short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jun 2016 15:00:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D192115 Vladimir Krstulja changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|209937 | Flags|maintainer-feedback?(mokhi6 | |4@gmail.com) | Summary|devel/libcxxrt: Demangling |Demangling issues with |issues with libcxxrt.so.1 |libcxxrt.so.1 --- Comment #4 from Vladimir Krstulja --- I see now the original report is about libcxxrt in the base. I have wrongly associated this with the port. Reverting. However, since the upstream repor= t is closed, fixed, what to do with this PR? Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209937 [Bug 209937] devel/libcxxrt: Upgrade to a more recent version (from 2013122= 5 to 20160529) --=20 You are receiving this mail because: You are the assignee for the bug.=