From owner-freebsd-current@FreeBSD.ORG Thu Sep 12 19:47:54 2013 Return-Path: Delivered-To: freebsd-current@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 ESMTP id 5B406C44 for ; Thu, 12 Sep 2013 19:47:54 +0000 (UTC) (envelope-from serguey-grigoriev@yandex.ru) Received: from forward11.mail.yandex.net (forward11.mail.yandex.net [IPv6:2a02:6b8:0:801::1]) by mx1.freebsd.org (Postfix) with ESMTP id 0FFCD2211 for ; Thu, 12 Sep 2013 19:47:54 +0000 (UTC) Received: from web9j.yandex.ru (web9j.yandex.ru [5.45.198.50]) by forward11.mail.yandex.net (Yandex) with ESMTP id 951A3E807DD for ; Thu, 12 Sep 2013 23:47:51 +0400 (MSK) Received: from 127.0.0.1 (localhost [127.0.0.1]) by web9j.yandex.ru (Yandex) with ESMTP id 531E846A06F5; Thu, 12 Sep 2013 23:47:51 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1379015271; bh=wPaUfCuM/UL1Oh3NxlnYvIhJuouiNetH1DAK/HTvU0A=; h=From:To:Subject:Date; b=Fuo18J9erL+UAMLsA6kPRiyaD1sInowZdLpdrDFIItv1LlLLqHrv1ezJIC4cHSoRD S5pnw+hvvrVt9H4FXUozskF39Ol4/o3oivTHlnIBVVLVuRAVTbAFrV/Hq2u7F39568 ENEO5e23tF7j3gm0GXWiTiq3AQkfVymo+hMu1wCc= Received: from [188.134.22.116] ([188.134.22.116]) by web9j.yandex.ru with HTTP; Thu, 12 Sep 2013 23:47:51 +0400 From: S.N.Grigoriev To: "freebsd-current@freebsd.org" Subject: Re: HEADS UP: No gcc by default in -HEAD on platforms where clang is cc MIME-Version: 1.0 Message-Id: <245071379015271@web9j.yandex.ru> X-Mailer: Yamail [ http://yandex.ru ] 5.0 Date: Thu, 12 Sep 2013 23:47:51 +0400 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailman-Approved-At: Thu, 12 Sep 2013 20:51:00 +0000 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Sep 2013 19:47:54 -0000 Hi list, after upgrading to r255423 (make buildworld && make buildkernel && make installkernel && make installworld && reboot; make delete-old && make delete-old-libs) I cannot build the system with the WITH_GCC=yes and WITH_GNUCXX=yes options in my src.conf. The following error occures: --- libgssapi_krb5.so.10 --- building shared library libgssapi_krb5.so.10 --- gnu/lib__L --- /usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/list.cc:61:3: error: use of undeclared identifier '_List_node_base' _List_node_base::swap(_List_node_base& __x, _List_node_base& __y) ^ /usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/list.cc:61:25: error: use of undeclared identifier '_List_node_base'; did you mean '__list_node_base'? _List_node_base::swap(_List_node_base& __x, _List_node_base& __y) ^~~~~~~~~~~~~~~ __list_node_base /usr/obj/usr/src/tmp/usr/include/c++/v1/list:190:8: note: '__list_node_base' declared here struct __list_node_base ^ /usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/list.cc:61:25: error: no template named '_List_node_base'; did you mean '__list_node_base'? _List_node_base::swap(_List_node_base& __x, _List_node_base& __y) ^~~~~~~~~~~~~~~ __list_node_base /usr/obj/usr/src/tmp/usr/include/c++/v1/list:190:8: note: '__list_node_base' declared here struct __list_node_base ^ /usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/list.cc:61:25: error: use of class template '__list_node_base' requires template arguments _List_node_base::swap(_List_node_base& __x, _List_node_base& __y) ^ /usr/obj/usr/src/tmp/usr/include/c++/v1/list:190:8: note: template is declared here struct __list_node_base ^ Without options listed above all works fine. -- Regards, Serguey.