From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1073D2C85 for ; Thu, 4 Nov 2021 12:41:36 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 9155661076; Thu, 4 Nov 2021 12:41:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1636029695; bh=tm1jxyM2CruVcvCN1+NzNrnNVK1F1pL507EKiIPEzIQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=qYJ4oniK6iE1s8+hO6DmN+xJm6fDga/eERAcDPf5cm/OOsfEYG5wkdR/LYzGUDoEu +m8Ysf7lUJamQGPNZTb3OlgJ3zKaeib19dPwosjO1cOao8Y7WOg6Z4wcJz8jvah3c+ zf0P+NCSjlWu2d0T9KoGZpRLvGLwOjjqqQqgb6MDUmYqMkzjPLrfkc36j7OZ2hWJ7i UeQNeeGZmand9iG8RUB4JiIQYE2u20zcQ3wRwJfhyVxav+w8ROa76tgD2nlkPdnOiD mE8rG2ecYlae/aK/PTSuYYvyZze/VaK1nPQNxxqGfFaNskZG7KkE5yVmgUgq8eu3Pw 4CVMPfuqwjdkA== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 35BD2410A1; Thu, 4 Nov 2021 09:41:33 -0300 (-03) Date: Thu, 4 Nov 2021 09:41:33 -0300 From: Arnaldo Carvalho de Melo To: =?utf-8?B?RsSBbmctcnXDrCBTw7JuZw==?= Cc: Ian Rogers , Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Nathan Chancellor , Nick Desaulniers , Daniel Borkmann , Leo Yan , Michael Petlan , Sedat Dilek , linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org, llvm@lists.linux.dev Subject: Re: [PATCH v2 1/2] tools: Bump minimum LLVM C++ std to GNU++14 Message-ID: References: <20211012021321.291635-1-irogers@google.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Url: http://acmel.wordpress.com Em Mon, Oct 11, 2021 at 08:09:01PM -0700, Fāng-ruì Sòng escreveu: > On Mon, Oct 11, 2021 at 7:13 PM Ian Rogers wrote: > > > > LLVM 9 (current release is LLVM 13) moved the minimum C++ version to > > GNU++14. Bump the version numbers in the feature test and perf build. > > > > Signed-off-by: Ian Rogers > > > Reviewed-by: Fangrui Song Thanks, applied both patches. - Arnaldo