From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mx.groups.io with SMTP id smtpd.web10.4225.1678875123368885601 for ; Wed, 15 Mar 2023 03:12:03 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=bXlzC/oO; spf=pass (domain: redhat.com, ip: 170.10.129.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1678875122; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=rnpB8Lgx5FzjP3m5T2l3pJjLqi1yYO9hI8CYppKTrTw=; b=bXlzC/oOqdTwIOYWzB872gmPrOHk3FrYyV+CTp1K0Q4V1wtv3yxxMjX274s3ium1x8+Rwe +gKDAjVyXi1XxVCcQiLZRZkHEl3hjmCU8RwambyrgAK1lS/yx5m9sW3wvgJIvewemJUwqX YHBPkFvuKuLwH8LqG6Pad7JlKahnKTk= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-619-PyfwQnzrNra9e92NEBqE_g-1; Wed, 15 Mar 2023 06:11:59 -0400 X-MC-Unique: PyfwQnzrNra9e92NEBqE_g-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id B4F03885621; Wed, 15 Mar 2023 10:11:58 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.211]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8B4721121314; Wed, 15 Mar 2023 10:11:58 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 5E95F1800393; Wed, 15 Mar 2023 11:11:57 +0100 (CET) Date: Wed, 15 Mar 2023 11:11:57 +0100 From: "Gerd Hoffmann" To: devel@edk2.groups.io, quic_rcran@quicinc.com Cc: Andrew Fish , Leif Lindholm , Michael D Kinney , Bob Feng , Liming Gao , Yuwei Chen , Rebecca Cran Subject: Re: [edk2-devel] [PATCH 3/3] BaseTools: Build against C++14 when building with clang Message-ID: <20230315101157.ibikhpzwatbrqnjo@sirius.home.kraxel.org> References: <20230217035101.880854-1-rebecca@quicinc.com> <20230217035101.880854-4-rebecca@quicinc.com> MIME-Version: 1.0 In-Reply-To: <20230217035101.880854-4-rebecca@quicinc.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.3 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Feb 16, 2023 at 08:51:01PM -0700, Rebecca Cran wrote: > clang 17 defaults to C++17, where the 'register' keyword is deprecated > and the warning changed to an error. To avoid build errors, compile > against C++14 by specifying '-std=c++14' in CXXFLAGS. Acked-by: Gerd Hoffmann