From 68181a42aefa1688912a892e3ca0b0f92fd85576 Mon Sep 17 00:00:00 2001 From: wangyangdahai Date: Fri, 19 May 2023 03:30:45 +0000 Subject: [PATCH] riscv arch need skip tests on clang with flags Signed-off-by: wangyangdahai --- simde.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/simde.spec b/simde.spec index cb83d81..0b1c93d 100644 --- a/simde.spec +++ b/simde.spec @@ -5,7 +5,7 @@ Name: simde Version: 0.7.3 -Release: 1 +Release: 2 Summary: Implementations of SIMD instruction sets for systems which don't natively support them License: MIT and CC0-1.0 URL: https://github.com/nemequ/simde @@ -107,7 +107,7 @@ echo "=== 2.2. tests on clang with flags ===" mkdir test/build-clang-with-flags pushd test/build-clang-with-flags -%ifnarch %{arm} +%ifnarch %{arm} %{riscv} CC=clang CXX=clang++ cmake \ -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \ -DCMAKE_C_FLAGS="%{build_cflags}" \ @@ -124,6 +124,9 @@ popd %{_includedir}/%{name} %changelog +* Fri May 19 2023 wangyangdahai - 0.7.3-2 +- riscv arch need skip tests on clang with flags + * Tue Mar 8 2022 yaoxin - 0.7.3-1 - Upgrade simde to 0.7.3 to resolve compilation failures. -- Gitee