From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x42e.google.com (mail-wr1-x42e.google.com [IPv6:2a00:1450:4864:20::42e]) by sourceware.org (Postfix) with ESMTPS id BD2943858034; Fri, 27 Nov 2020 17:50:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org BD2943858034 Received: by mail-wr1-x42e.google.com with SMTP id u12so6440628wrt.0; Fri, 27 Nov 2020 09:50:29 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=eX/95TxFPrG3t61Ddx2OK6n+wPvkGCNX9Jh4S42zjD8=; b=Wd2osYWfizc4tQp5/C9o856aGLyo537ljvG8D0Cj+GbnMG6Bf6I7MtJBlzJE488isO 4ICxmbPzNMhnw1xRX2nvBqXslezDv1bcZ6vaHHCREo8BPIpKTX0Lsj4G8w8BFfqN7rjl 9zblYa1YZU7WFkX/8O+qje8czILsRgmDR4oRceVovNlg9NK7OOA3OUT1WsOiUB0b3d2p PxXXnHv3EIZjU2eJ8BdO1gjvLHa4PTxKi25MLyv/Mn5gDBrjXF9gw9LcSrXrbviHgAsf 6CS3eryDgIifqb6y5OarKs3EDxx46Dw9ZyWGPKjCLdsaeTPzoOTpBlnxTCh1m0sGoS4A BHEA== X-Gm-Message-State: AOAM531anatvZKHoZ4GHEs5uYhDOR0jVtTEjUetPBzMjMfSxdrO0amfQ IFeRNz7pxvd7pUYuhLGaCfr+BGu0sO114mBJdlU= X-Google-Smtp-Source: ABdhPJyYVTOhxblvNnPuL7SvRQmTpCiMKkaB6Bm1/3cDQPbbXFTWNDnvt+sDEemyS2F7P5jEUQ//i4hVoUNo/sq9OJg= X-Received: by 2002:adf:e551:: with SMTP id z17mr12089918wrm.374.1606499428798; Fri, 27 Nov 2020 09:50:28 -0800 (PST) MIME-Version: 1.0 References: <20201126223304.GN1312820@redhat.com> <20201126230202.GP1312820@redhat.com> In-Reply-To: <20201126230202.GP1312820@redhat.com> From: David Edelsohn Date: Fri, 27 Nov 2020 12:50:17 -0500 Message-ID: Subject: Re: More new AIX errors To: Jonathan Wakely Cc: "libstdc++" , GCC Patches Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Nov 2020 17:50:31 -0000 On Thu, Nov 26, 2020 at 6:02 PM Jonathan Wakely wrote: > > On 26/11/20 22:33 +0000, Jonathan Wakely wrote: > >On 26/11/20 15:33 -0500, David Edelsohn via Libstdc++ wrote: > >>Hi, Jonathan > >> > >>Thanks for the recent fixes. I still see a few errors that have crept > >>in on AIX. All the same: > >> > >>FAIL: 17_intro/headers/c++2020/all_no_rtti.cc (test for excess errors) > >>FAIL: 17_intro/headers/c++2020/all_pedantic_errors.cc (test for excess errors) > >>FAIL: 17_intro/headers/c++2020/operator_names.cc (test for excess errors) > >>FAIL: 17_intro/headers/c++2020/stdc++.cc (test for excess errors) > >>FAIL: 17_intro/headers/c++2020/stdc++_multiple_inclusion.cc (test for > >>excess errors) > >> > >>/tmp/GCC/powerpc-ibm-aix7.2.3.0/libstdc++-v3/include/latch:64: error: > >>'notify_all' is not a member of 'std::__atomic_impl' > >>/tmp/GCC/powerpc-ibm-aix7.2.3.0/libstdc++-v3/include/latch:75: error: > >>'__atomic_wait' is not a member of 'std'; did you mean > >>'__atomic_val_t'? > >> > >>Can you take a look when you have a moment? > > > >I think that was caused by r11-5436 which added to the > >precompiled header , and incorrectly assumes > >that the atomic waiting functions are always available. They're not > >available for the gthr-single.h multilib on AIX. > > > >I'm testing the fix now. > > And here it is. Committed to trunk. That fixed it! Thanks, David