From ebc1a729b6d09af06f5f7f6c1a2bc36268799a06 Mon Sep 17 00:00:00 2001 From: matken11235 <26405363+matken11235@users.noreply.github.com> Date: Sat, 1 Jun 2019 11:30:20 +0900 Subject: [PATCH] Resolve #55 --- include/poac/core/stroite/core/builder.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/poac/core/stroite/core/builder.hpp b/include/poac/core/stroite/core/builder.hpp index 18bf233fe..ca8bdef8d 100644 --- a/include/poac/core/stroite/core/builder.hpp +++ b/include/poac/core/stroite/core/builder.hpp @@ -102,7 +102,7 @@ namespace poac::core::stroite::core { const auto cpp_version = yaml::get_with_throw(node.at("cpp_version")); const std::string cn = field::standard::command_to_name(compiler); - compile_conf.std_version = field::standard::convert(cpp_version, cn, false); + compile_conf.std_version = field::standard::convert(cpp_version, cn, yaml::get(node.at("build"), "gnu")); // compile_conf.include_search_path = utils::options::make_include_search_path(exist_deps_key); compile_conf.other_args = utils::options::make_compile_other_args(node);