mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 14:16:47 +00:00
* feat: 支持动态链接 Authored-By: chiichen <chiichen@qq.com> Co-authored-by: longjin <longjin@DragonOS.org> Signed-off-by: longjin <longjin@DragonOS.org> * build: 更新构建容器版本至v1.12并指定DADK安装版本 - 将BUILD_CONTAINER_VERSION从v1.11升级到v1.12 - 修改bootstrap.sh和user/Makefile中DADK的安装方式,明确指定版本v0.4.0 Signed-off-by: longjin <longjin@DragonOS.org> --------- Signed-off-by: longjin <longjin@dragonos.org> Co-authored-by: chiichen <chiichen@qq.com> Co-authored-by: longjin <longjin@dragonos.org> Co-authored-by: Jomo <xuzihao@dragonos.org> Co-authored-by: MemoryShore <1353318529@qq.com>
44 lines
1.5 KiB
TOML
44 lines
1.5 KiB
TOML
# 用户程序名称
|
||
name = "core utils"
|
||
# 版本号
|
||
version = "9.4.0"
|
||
# 用户程序描述信息
|
||
description = "GNU Core utils"
|
||
# (可选)是否只构建一次,如果为true,DADK会在构建成功后,将构建结果缓存起来,下次构建时,直接使用缓存的构建结果
|
||
build-once = true
|
||
# (可选) 是否只安装一次,如果为true,DADK会在安装成功后,不再重复安装
|
||
install-once = true
|
||
# 目标架构
|
||
# 可选值:"x86_64", "aarch64", "riscv64"
|
||
target-arch = ["x86_64"]
|
||
# 任务源
|
||
[task-source]
|
||
# 构建类型
|
||
# 可选值:"build-from-source", "install-from-prebuilt"
|
||
type = "build-from-source"
|
||
# 构建来源
|
||
# "build_from_source" 可选值:"git", "local", "archive"
|
||
# "install_from_prebuilt" 可选值:"local", "archive"
|
||
source = "archive"
|
||
# 路径或URL
|
||
source-path = "https://mirrors.dragonos.org.cn/pub/third_party/gnu/coreutils/coreutils-9.4.tar.xz"
|
||
|
||
# 把压缩包中的哪个目录作为根目录(可选),仅当 source = "archive" 时生效
|
||
archive-rootdir = "coreutils-9.4"
|
||
|
||
# 构建相关信息
|
||
[build]
|
||
# (可选)构建命令
|
||
build-command = "./configure CC=x86_64-linux-musl-gcc CFLAGS=-static && make -j $(nproc) && DESTDIR=$DADK_CURRENT_BUILD_DIR make install"
|
||
# 安装相关信息
|
||
[install]
|
||
# (可选)安装到DragonOS的路径
|
||
in-dragonos-path = "/"
|
||
# 清除相关信息
|
||
[clean]
|
||
# (可选)清除命令
|
||
clean-command = "make clean"
|
||
# (可选)依赖项
|
||
# 注意:如果没有依赖项,忽略此项,不允许只留一个[[depends]]
|
||
# 此处无依赖项,故忽略
|