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
+3 -2
View File
@@ -6,6 +6,7 @@ signing_key = "build/keys/distro.rsa"
signing_pubkey = "build/keys/distro.rsa.pub"
target_arch = "x86_64"
libc = "musl"
host_cflags = "-O2 -pipe"
host_cxxflags = ""
@@ -22,8 +23,8 @@ if target_arch == "x86_64":
target_ldflags += " -Wl,-z,pack-relative-relocs"
options = {
"libc": "musl",
"target_triple": "x86_64-linux-musl",
"libc": libc,
"target_triple": target_arch + "-linux-" + libc,
"host_cflags": host_cflags,
"host_cxxflags": host_cxxflags,
"host_ldflags": host_ldflags,