From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 50233 invoked by alias); 19 Oct 2017 17:24:35 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 49977 invoked by uid 89); 19 Oct 2017 17:24:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_PASS autolearn=ham version=3.3.2 spammy=4.0.0, gcc-head, gcchead X-HELO: ainaz.pair.com Received: from ainaz.pair.com (HELO ainaz.pair.com) (209.68.2.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 19 Oct 2017 17:24:15 +0000 Received: from ainaz.pair.com (localhost [127.0.0.1]) by ainaz.pair.com (Postfix) with ESMTP id 53FD93F445; Thu, 19 Oct 2017 13:24:09 -0400 (EDT) Received: from [192.168.0.5] (vie-188-118-244-226.dsl.sil.at [188.118.244.226]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id E0D143F468; Thu, 19 Oct 2017 13:23:53 -0400 (EDT) Date: Thu, 19 Oct 2017 17:27:00 -0000 From: Gerald Pfeifer To: David Malcolm cc: Pedro Alves , Richard Biener , gcc-patches@gcc.gnu.org, Trevor Saunders , Jonathan Wakely Subject: Re: [committed] Add gnu::unique_ptr In-Reply-To: <1508187336-32666-1-git-send-email-dmalcolm@redhat.com> Message-ID: References: <46f13850-b1bd-7ce4-e7a8-cd826d838966@redhat.com> <1508187336-32666-1-git-send-email-dmalcolm@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-IsSubscribed: yes X-SW-Source: 2017-10/txt/msg01290.txt.bz2 On Mon, 16 Oct 2017, David Malcolm wrote: > For reference, here's what I committed: I'm afraid this may have broken the bootstrap with clang? In file included from /scratch/tmp/gerald/gcc-HEAD/gcc/unique-ptr-tests.cc:23: In file included from /scratch/tmp/gerald/gcc-HEAD/gcc/../include/unique-ptr.h:77: In file included from /usr/include/c++/v1/memory:629: /usr/include/c++/v1/typeinfo:199:2: error: no member named 'fancy_abort' in namespace 'std::__1'; did you mean simply 'fancy_abort'? _VSTD::abort(); ^~~~~~~ /usr/include/c++/v1/__config:390:15: note: expanded from macro '_VSTD' #define _VSTD std::_LIBCPP_NAMESPACE ^ /scratch/tmp/gerald/gcc-HEAD/gcc/system.h:725:13: note: 'fancy_abort' declared here extern void fancy_abort (const char *, int, const char *) ^ This is FreeBSD clang version 4.0.0 (tags/RELEASE_400/final 297347) (based on LLVM 4.0.0), on x86_64-unknown-freebsd11.1. Gerald