From 619def44c1cca9f3cdf63544d5f24f2c7a7d9b77 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Tue, 22 Feb 2022 17:03:21 +0100 Subject: Initial self-hosting commit This is the initial version of our tool that is able to build itself. In can be bootstrapped by ./bin/bootstrap.py Co-authored-by: Oliver Reiche Co-authored-by: Victor Moreno --- TARGETS | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 TARGETS (limited to 'TARGETS') diff --git a/TARGETS b/TARGETS new file mode 100644 index 00000000..4340bb91 --- /dev/null +++ b/TARGETS @@ -0,0 +1,26 @@ +{ "exported-just": + { "type": "export" + , "target": ["src/buildtool/main", "just"] + , "flexible_config": + ["OS", "ARCH", "HOST_ARCH", "TARGET_ARCH", "CXX", "AR", "ENV"] + } +, "just": + { "type": ["@", "rules", "CC", "configure"] + , "arguments_config": ["OS", "ARCH"] + , "os": [{"type": "var", "name": "OS", "default": "linux"}] + , "arch": [{"type": "var", "name": "ARCH", "default": "x86_64"}] + , "target": ["exported-just"] + } +, "libgit2": + { "type": "export" + , "target": ["@", "libgit2", "", "git2"] + , "fixed_config": + { "USE_SHA1": "OpenSSL" + , "USE_SSH": false + , "USE_HTTPS": false + , "USE_GSSAPI": false + } + , "flexible_config": + ["OS", "ARCH", "HOST_ARCH", "TARGET_ARCH", "CXX", "AR", "ENV"] + } +} -- cgit v1.2.3