build_deps

This commit is contained in:
Marvin Friedrich
2026-05-30 19:18:25 +02:00
parent fc97bc4bb2
commit afb13bb8ad
5 changed files with 27 additions and 21 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ deps = [profile["libc"]]
build_if = profile["arch"] in ("x86_64", "aarch64", "riscv64", "loongarch64")
_arch_args = {
arch_args = {
"x86_64": [
"--enable-uefi-x86-64",
"--enable-uefi-ia32",
@@ -25,7 +25,7 @@ _arch_args = {
}
configure, build, install = autotools(
configure_args=["--enable-uefi-cd", *_arch_args.get(profile["arch"], [])],
configure_args=["--enable-uefi-cd", *arch_args[profile["arch"]]],
configure_env={"TOOLCHAIN_FOR_TARGET": profile["triple"] + "-"},
)