From 07636e3c3d53ed03e0614d878a3d8a599c9d7219 Mon Sep 17 00:00:00 2001 From: LINxiansheng Date: Thu, 9 Sep 2021 21:43:46 +0800 Subject: [PATCH] Add UOS to OceanBase --- README-CN.md | 3 ++- README.md | 3 ++- deps/3rd/dep_create.sh | 3 +++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README-CN.md b/README-CN.md index ae93aa73ae..9ac2c75536 100644 --- a/README-CN.md +++ b/README-CN.md @@ -48,6 +48,7 @@ OceanBase 数据库使用 [MulanPubL - 2.0](https://license.coscl.org.cn/MulanPu | OpenAnolis | 8.2 | x86_64 | ✅ | ✅ | ✅ | ✅ | | SUSE | 15.2 | x86_64 | ✅ | ✅ | ✅ | ✅ | | Ubuntu | 16.04, 18.04, 20.04 | x86_64 | ✅ | ✅ | ✅ | ✅ | +| UOS | 20 | x86_64 | ✅ | ✅ | ✅ | ✅ | ## 如何构建 @@ -55,7 +56,7 @@ OceanBase 数据库使用 [MulanPubL - 2.0](https://license.coscl.org.cn/MulanPu 在构建前您需要确认您的机器已经安装必要的软件: -#### Fedora 系列 (包括 CentOS,Fedora,OpenAnolis,RedHat 等) +#### Fedora 系列 (包括 CentOS,Fedora,OpenAnolis,RedHat, UOS等) ```sh yum install git wget rpm* cpio make glibc-devel glibc-headers binutils diff --git a/README.md b/README.md index 146ee52f2f..240e80586a 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ OceanBase Database is under [MulanPubL - 2.0](https://license.coscl.org.cn/Mulan | OpenAnolis | 8.2 | x86_64 | ✅ | ✅ | ✅ | ✅ | | SUSE | 15.2 | x86_64 | ✅ | ✅ | ✅ | ✅ | | Ubuntu | 16.04, 18.04, 20.04 | x86_64 | ✅ | ✅ | ✅ | ✅ | +| UOS | 20 | x86_64 | ✅ | ✅ | ✅ | ✅ | ## How to build @@ -55,7 +56,7 @@ OceanBase Database is under [MulanPubL - 2.0](https://license.coscl.org.cn/Mulan Before building, you need to confirm that your device has installed the necessary software. -#### Fedora based (, including CentOS, Fedora, OpenAnolis, RedHat, etc.) +#### Fedora based (, including CentOS, Fedora, OpenAnolis, RedHat, UOS, etc.) ```sh yum install git wget rpm* cpio make glibc-devel glibc-headers binutils diff --git a/deps/3rd/dep_create.sh b/deps/3rd/dep_create.sh index 7b9c314948..eb2834dacc 100644 --- a/deps/3rd/dep_create.sh +++ b/deps/3rd/dep_create.sh @@ -64,6 +64,9 @@ function get_os_release() { sles) version_ge "15" && compat_centos7 && return ;; + uos) + version_ge "20" && compat_centos7 && return + ;; esac not_supported && return 1 } -- GitLab