summaryrefslogtreecommitdiff
path: root/src/bootstrap.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-10-10 19:02:54 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2021-10-10 19:02:54 +0200
commit87aad8c76eb2371720c9aceef7516ecb0859ecdf (patch)
tree8068578c0cd986837757b1d8f8193b01aac01656 /src/bootstrap.cc
parent922412f5dc975b423757c1e248eac2813e48acb2 (diff)
Improve initial bootstrap speed.
Diffstat (limited to 'src/bootstrap.cc')
-rw-r--r--src/bootstrap.cc83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/bootstrap.cc b/src/bootstrap.cc
new file mode 100644
index 0000000..9b8e029
--- /dev/null
+++ b/src/bootstrap.cc
@@ -0,0 +1,83 @@
+// -*- c++ -*-
+// Distributed under the BSD 2-Clause License.
+// See accompanying file LICENSE for details.
+#include <iostream>
+#include <array>
+
+#define BOOTSTRAP
+
+#include "libctor.h"
+#include "settings.h"
+
+#include "util.cc"
+#include "rebuild.cc"
+#include "task.cc"
+#include "task_cc.cc"
+#include "task_ar.cc"
+#include "execute.cc"
+#include "tasks.cc"
+#include "build.cc"
+
+
+std::filesystem::path configurationFile("configuration.cc");
+std::filesystem::path configHeaderFile("config.h");
+
+const std::map<std::string, std::string> default_configuration{};
+const std::map<std::string, std::string>& configuration()
+{
+ return default_configuration;
+}
+
+bool hasConfiguration(const std::string& key)
+{
+ return false;
+}
+
+const std::string& getConfiguration(const std::string& key,
+ const std::string& defaultValue)
+{
+ return defaultValue;
+}
+
+int main(int argc, char* argv[])
+{
+ if(argc > 1)
+ {
+ std::cerr << "This is a minimal bootstrap version of " << argv[0] <<
+ " which doesn't support any arguments\n";
+ return 1;
+ }
+
+ Settings settings{};
+
+ settings.builddir = getConfiguration(cfg::builddir, "build");
+ settings.parallel_processes =
+ std::max(1u, std::thread::hardware_concurrency() * 2 - 1);
+ settings.verbose = 0;
+ auto all_tasks = getTasks(settings);
+ for(auto task : all_tasks)
+ {
+ if(task->registerDepTasks(all_tasks))
+ {
+ return 1;
+ }
+ }
+
+ std::vector<Target> non_unittest_targets;
+ auto& targets = getTargets(settings);
+ for(const auto& target : targets)
+ {
+ if(target.config.type != TargetType::UnitTest)
+ {
+ non_unittest_targets.push_back(target);
+ }
+ }
+
+ auto ret = build(settings, "all", non_unittest_targets, all_tasks);
+ if(ret != 0)
+ {
+ return ret;
+ }
+
+ return 0;
+}