From b2bf0cdecb373a770d28044925565e8da07e6cd0 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Tue, 19 May 2020 18:05:56 +0200 Subject: [PATCH] Set CMAKE_CXX_STANDARD when compiling LLD --- src/bootstrap/native.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs index 446017f1fabe0..5b6e953484369 100644 --- a/src/bootstrap/native.rs +++ b/src/bootstrap/native.rs @@ -520,6 +520,10 @@ impl Step for Lld { .define("LLVM_TABLEGEN_EXE", llvm_config.with_file_name("llvm-tblgen")); } + // Explicitly set C++ standard, because upstream doesn't do so + // for standalone builds. + cfg.define("CMAKE_CXX_STANDARD", "14"); + cfg.build(); t!(File::create(&done_stamp));