From e2602584e4d5a1618dced6d6d606a9e5c7d9095b Mon Sep 17 00:00:00 2001 From: liyunfei Date: Wed, 25 Jun 2025 18:14:23 +0800 Subject: [PATCH] update llvm-build-deps to 1.0.1 --- .../1.0.1/22.03-lts-sp4/Dockerfile | 28 +++++++++++++++++++ AI/llvm-build-deps/meta.yml | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 AI/llvm-build-deps/1.0.1/22.03-lts-sp4/Dockerfile diff --git a/AI/llvm-build-deps/1.0.1/22.03-lts-sp4/Dockerfile b/AI/llvm-build-deps/1.0.1/22.03-lts-sp4/Dockerfile new file mode 100644 index 0000000..03fe42b --- /dev/null +++ b/AI/llvm-build-deps/1.0.1/22.03-lts-sp4/Dockerfile @@ -0,0 +1,28 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp4 +FROM ${BASE} + +RUN yum update -y && \ + yum install -y \ + gcc \ + g++ \ + libgcc \ + binutils \ + binutils-devel \ + make \ + cmake \ + openssl-devel \ + python3 \ + python3-setuptools \ + python3-devel \ + python-wheel \ + texinfo \ + libstdc++-static \ + libasan \ + libubsan \ + liblsan \ + libzstd-devel \ + ncurses-devel \ + libatomic && \ + yum clean all + +CMD ["bash"] diff --git a/AI/llvm-build-deps/meta.yml b/AI/llvm-build-deps/meta.yml index a0e0979..3dafb05 100644 --- a/AI/llvm-build-deps/meta.yml +++ b/AI/llvm-build-deps/meta.yml @@ -1,2 +1,4 @@ 1.0.0-oe2203sp4: path: 1.0.0/22.03-lts-sp4/Dockerfile +1.0.1-oe2203sp4: + path: 1.0.0/22.03-lts-sp4/Dockerfile -- Gitee