From 0566cd800efa6d5fe6dd5145dc545e1cd11fdad5 Mon Sep 17 00:00:00 2001 From: geliwei <5633293+geliwei@user.noreply.gitee.com> Date: Tue, 7 Dec 2021 05:32:21 +0000 Subject: [PATCH] build: add support for loongarch64 --- ucx.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ucx.spec b/ucx.spec index 02add94..d9ea0b8 100644 --- a/ucx.spec +++ b/ucx.spec @@ -1,3 +1,4 @@ +%define anolis_release .0.1 %{!?configure_options: %global configure_options %{nil}} %bcond_without cma %bcond_with cuda @@ -17,7 +18,7 @@ Name: ucx Version: 1.11.2 -Release: 2%{?dist} +Release: 2%{anolis_release}%{?dist} Summary: UCX is a communication library implementing high-performance messaging License: BSD @@ -29,7 +30,7 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Prefix: %{_prefix} # UCX currently supports only the following architectures -ExclusiveArch: aarch64 ppc64le x86_64 +ExclusiveArch: aarch64 ppc64le x86_64 loongarch64 %if %{defined extra_deps} Requires: %{?extra_deps} @@ -311,6 +312,9 @@ library internals, protocol objects, transports status, and more. %endif %changelog +* Tue Apr 19 2022 gongwen - 1.11.2-2.0.1 +- Add support for loongarch64 + * Thu Nov 18 2021 Honggang Li - 1.11.2-2 - TOOLS/INFO: Update help message for context features - Resolves: rhbz#1973959 -- Gitee