From 6e1fabcfe60678c7164fd52888328a9955c75b51 Mon Sep 17 00:00:00 2001 From: hefq343 Date: Tue, 18 Jun 2024 09:34:30 +0800 Subject: [PATCH] Init support for ppc64le Signed-off-by: hefq343 (cherry picked from commit eee40c2b6e4716e542921e5ff9d85362ee3862ca) --- boost.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/boost.spec b/boost.spec index 999fea0..2ebf6a3 100644 --- a/boost.spec +++ b/boost.spec @@ -2,7 +2,7 @@ Name: boost Version: 1.78.0 -Release: 17 +Release: 18 Summary: The free peer-reviewed portable C++ source libraries License: Boost Software License 1.0 URL: http://www.boost.org @@ -388,10 +388,14 @@ find libs -name example -exec cp {} boost-example --parents -r \; %license LICENSE_1_0.txt %{_libdir}/libboost_math_c99.so.%{version} %{_libdir}/libboost_math_c99f.so.%{version} +%ifnarch ppc64le %{_libdir}/libboost_math_c99l.so.%{version} +%endif %{_libdir}/libboost_math_tr1.so.%{version} %{_libdir}/libboost_math_tr1f.so.%{version} +%ifnarch ppc64le %{_libdir}/libboost_math_tr1l.so.%{version} +%endif %files nowide %license LICENSE_1_0.txt @@ -461,6 +465,9 @@ find libs -name example -exec cp {} boost-example --parents -r \; %{_libdir}/*.a %changelog +* Tue Jun 18 2024 hefq343 - 1.78.0-18 +- Init support for ppc64le + * Mon Aug 14 2023 laokz - 1.78.0-17 - add -latomic flag to lockfree tests for riscv64 -- Gitee