This commit is contained in:
2026-05-20 00:30:38 +02:00
parent 312750c61b
commit 16d81f509f
36 changed files with 13292 additions and 273 deletions
+6 -1
View File
@@ -13,7 +13,7 @@ source = tarball_source(
host_deps = ["binutils", "gcc"]
deps = [options.libc]
configure, build, install = autotools(configure_args = [
configure, build, _ = autotools(configure_args = [
"--with-shared",
"--without-debug",
"--without-ada",
@@ -31,3 +31,8 @@ configure, build, install = autotools(configure_args = [
"cf_cv_builtin_bool": "1",
"ac_cv_header_stdbool_h": "yes",
})
def install(ctx, pkg):
autotools_install(ctx, pkg, extra_args = [
"DESTDIR=" + pkg.dest_dir
])