More stuff

This commit is contained in:
2026-05-18 00:49:24 +02:00
parent 695f30d678
commit 98f3fee099
15 changed files with 333 additions and 132 deletions
+1 -2
View File
@@ -13,13 +13,12 @@ source = {
host_deps = ["binutils", "gcc"]
def _make_args(ctx, *args):
triple = ctx.options["target_triple"]
result = [
"make",
"-C", ctx.source_dir,
"O=" + ctx.build_dir,
"ARCH=x86_64",
f"CROSS_COMPILE={triple}-",
"CROSS_COMPILE=" + OPTIONS.target_triple + "-",
"-j" + str(ctx.jobs),
]
result.extend(args)