-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1、更新软件版本到2024年6月1日时的发布状态。 2、完善架构数据data文件的定义及架构名称文件的定义。 3、增加用来设置定义默认程序机制、系统脚本包(yb-default-select),以及构建中需要的支持函数。 4、增加 kernel_pack.sh 脚本,一个用户自编内核转成勇豹系统使用格式的工具。 5、增加benchmark制作组。 6、更新发布信息收集脚本release_info.sh和live目录生成脚本live_os.sh,以支持update目录。 7、更新构建系统脚本build.sh,增加支持VERSION参数指定使用软件的不同版本来构建某个具体步骤。 8、修改下载脚本get_all_package_url.sh,支持使用VERSION指定软件版本的下载。 9、增加自定义脚本create_mingw_toolchain.sh,用于创建mingw的工具链。 10、增加自定义脚本create_mini_chroot_sysroot.sh,用于创建一个小型的sysroot。 11、更新env配置文件。
- Loading branch information
1 parent
61c739a
commit 91ba455
Showing
2,415 changed files
with
44,435 additions
and
42,225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# ./build.sh -o mingw -g mingw_sysroot | ||
./build.sh -o mingw -e host=mingw64,target=loongarch64 toolchain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
declare CUSTOM_TARGET_NAME="loongarch64" | ||
declare FORCE_BUILD=0 | ||
|
||
while getopts 't:h' OPT; do | ||
case $OPT in | ||
t) | ||
CUSTOM_TARGET_NAME=$OPTARG | ||
;; | ||
f) | ||
FORCE_BUILD=1 | ||
;; | ||
h|?) | ||
echo "目标系统构建命令。" | ||
exit 0 | ||
;; | ||
esac | ||
done | ||
shift $(($OPTIND - 1)) | ||
|
||
case "${CUSTOM_TARGET_NAME}" in | ||
loongarch64 | x86_64 | i686 | mips64el | riscv64 ) | ||
;; | ||
*) | ||
echo "不支持 ${CUSTOM_TARGET_NAME} 架构的构建。" | ||
exit 1 | ||
;; | ||
esac | ||
|
||
if [ "x${FORCE_BUILD}" == "x0" ]; then | ||
./build.sh -S mini_runtime -e target=${CUSTOM_TARGET_NAME} -i steps/mini_chroot_sysroot.index | ||
else | ||
./build.sh -a -f -S mini_runtime -e target=${CUSTOM_TARGET_NAME} -i steps/mini_chroot_sysroot.index | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.