# Disable in source builds on EPEL <9 %undefine __cmake_in_source_build %undefine __cmake3_in_source_build %define csexec_archs aarch64 ppc64le s390x x86_64 Name: cswrap Version: 2.2.3.20231003.161146.gb0d2bd1 Release: 1%{?dist} Summary: Generic compiler wrapper License: GPL-3.0-or-later URL: https://github.com/csutils/%{name} Source0: cswrap-2.2.3.20231003.161146.gb0d2bd1.tar.gz BuildRequires: asciidoc BuildRequires: cmake3 BuildRequires: gcc # csmock copies the resulting cswrap binary into mock chroot, which may contain # an older (e.g. RHEL-7) version of glibc, and it would not dynamically link # against the old version of glibc if it was built against a newer one. # Therefore, we link glibc statically. BuildRequires: glibc-static # The test-suite runs automatically trough valgrind if valgrind is available # on the system. By not installing valgrind into mock's chroot, we disable # this feature for production builds on architectures where valgrind is known # to be less reliable, in order to avoid unnecessary build failures (see RHBZ # #810992, #816175, and #886891). Nevertheless developers are free to install # valgrind manually to improve test coverage on any architecture. %ifarch %{ix86} x86_64 BuildRequires: valgrind %endif %description Generic compiler wrapper used by csmock to capture diagnostic messages. # csexec is available on architectures defined in %%{csexec_archs} only %ifarch %{csexec_archs} %package -n csexec Summary: Dynamic linker wrapper Conflicts: csexec < %{version}-%{release} %description -n csexec This package contains csexec - a dynamic linker wrapper. The wrapper can be used to run dynamic analyzers and formal verifiers on source RPM package fully automatically. %endif %prep %autosetup -n cswrap-2.2.3.20231003.161146.gb0d2bd1 %build %cmake3 \ -DPATH_TO_WRAP=\"%{_libdir}/cswrap\" \ -DSTATIC_LINKING=ON %cmake3_build %check %ctest3 %install %cmake3_install install -m0755 -d "%{buildroot}%{_libdir}"{,/cswrap} for i in c++ cc g++ gcc clang clang++ cppcheck smatch \ divc++ divcc diosc++ dioscc gclang++ gclang goto-gcc \ %{_arch}-redhat-linux-c++ \ %{_arch}-redhat-linux-g++ \ %{_arch}-redhat-linux-gcc do ln -s ../../bin/cswrap "%{buildroot}%{_libdir}/cswrap/$i" done %files %license COPYING %doc README %{_bindir}/cswrap %{_libdir}/cswrap %{_mandir}/man1/%{name}.1* %ifarch %{csexec_archs} %files -n csexec %license COPYING %{_bindir}/csexec %{_bindir}/csexec-loader %{_libdir}/libcsexec-preload.so %{_mandir}/man1/csexec.1* %endif