From 1ad89f7a356b0f787f38fd82b83075ffc15760ec Mon Sep 17 00:00:00 2001 From: Super User Date: Mon, 1 Dec 2025 11:54:36 +0000 Subject: [PATCH] gcc: fix rpath QA issues --- gcc.spec | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/gcc.spec b/gcc.spec index 6a1f22e..d5baf1c 100644 --- a/gcc.spec +++ b/gcc.spec @@ -7,7 +7,7 @@ License: GPL URL: https://gcc.gnu.org Source0: https://mirror.tochlab.net/pub/gnu/gcc/gcc-%{version}/gcc-%{version}.tar.gz -BuildRequires: gcc gcc-c++ make gmp-devel mpfr-devel libmpc-devel +BuildRequires: gcc gcc-c++ make gmp-devel mpfr-devel libmpc-devel chrpath Requires: bash %description @@ -23,18 +23,26 @@ CXX=g++ export CFLAGS="-O2 -pipe" export CXXFLAGS="-O2 -pipe" export LDFLAGS="" -./configure --prefix=%{_prefix} --enable-languages=c,c++ --disable-multilib --disable-bootstrap --disable-fixincludes +./configure --prefix=%{_prefix} --libdir=%{_libdir} --enable-languages=c,c++ --disable-multilib --disable-bootstrap --disable-fixincludes %make_build %install %make_install +#find %{buildroot} -type f -executable -name "lib*san*" -print0 | xargs -0 chrpath -d 2>/dev/null || true +chrpath -d %{buildroot}/usr/lib64/libhwasan.so.0.0.0 +chrpath -d %{buildroot}/usr/lib64/libtsan.so.2.0.0 +chrpath -d %{buildroot}/usr/lib64/libasan.so.8.0.0 +chrpath -d %{buildroot}/usr/lib64/liblsan.so.0.0.0 +chrpath -d %{buildroot}/usr/lib64/libubsan.so.1.0.0 %files -%license add-license-file-here -%doc add-docs-here - +%{_bindir} +%{_libdir} +%{_datadir} +%{_includedir} +%{_libexecdir} %changelog