From 799921f0b1f5dcaf8dd2aa2f40adaf8c8490affc Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 11 Jun 2021 19:20:06 +0200 Subject: Naiive async compilation --- libcppbuild.cc | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) (limited to 'libcppbuild.cc') diff --git a/libcppbuild.cc b/libcppbuild.cc index ff208b3..ddc0b66 100644 --- a/libcppbuild.cc +++ b/libcppbuild.cc @@ -5,6 +5,8 @@ #include #include #include +//#include +#include #include "libcppbuild.h" @@ -102,6 +104,8 @@ int main(int argc, const char* argv[]) const auto& files = project.sources; std::vector objects; + std::vector> tasks; + std::cout << "Building\n"; for(const auto& file : files) { @@ -154,12 +158,28 @@ int main(int argc, const char* argv[]) std::filesystem::last_write_time(file) > std::filesystem::last_write_time(object)) { - std::string compiler = "g++ -MMD -c " + file + " -o " + object; - std::cout << compiler << "\n"; - if(system(compiler.data())) - { - return 1; - } + + tasks.emplace_back( + std::async(std::launch::async, + [file, object]() + { + std::string compiler = "g++ -MMD -c " + file + " -o " + object; + std::cout << compiler << "\n"; + if(system(compiler.data())) + { + return 1; + } + return 0; + })); + } + } + + for(auto& task : tasks) + { + task.wait(); + if(task.get() != 0) + { + return 1; } } -- cgit v1.2.3