diff --git a/bin/tl_loader.v b/bin/tl_loader.v new file mode 100644 index 0000000..0ba2f36 --- /dev/null +++ b/bin/tl_loader.v @@ -0,0 +1,28 @@ +// toolchain loader + +module tl_loader + +import os +import v.vmod + +pub fn load_toolchain() { + // Load the toolchain modules and initialize them + // We call the package functions to load the toolchain modules and initialize them + // each package has their own load argument, which is passed to the package function. + toolchain_loader(load) + toolchain_alloc(load) + toolchain_compile(load) + toolchain_assemble(load) + toolchain_link(load) + toolchain_run(load) + toolchain_debug(load) + toolchain_help(load) + toolchain_version(load) + toolchain_info(load) + toolchain_config(load) + toolchain_test(load) + toolchain_bench(load) + toolchain_clean(load) + toolchain_up(load) + toolchain_symlink(load) +} \ No newline at end of file