%{?scl:%scl_package dyninst} Summary: An API for Run-time Code Generation License: LGPLv2+ Name: %{?scl_prefix}dyninst Group: Development/Libraries Release: 1%{?dist} URL: http://www.dyninst.org Version: 11.0.0 Exclusiveos: linux ExclusiveArch: %{ix86} x86_64 Source0: https://github.com/dyninst/dyninst/archive/v%{version}/dyninst-%{version}.tar.gz Source1: https://github.com/dyninst/testsuite/archive/%{version}/testsuite-%{version}.tar.gz Source2: https://sourceforge.net/projects/boost/files/boost/1.66.0/boost_1_66_0.tar.bz2 Source3: https://github.com/01org/tbb/archive/2018_U6.tar.gz Patch1: dyninst-11.0.0-cmake.patch Patch2: dyninst-11.0.0-elfstatic.patch Patch3: testsuite-11.0.0-test12.patch Patch4: testsuite-11.0.0-386.patch Patch5: dyninst-11.0.0-dwarf.patch Patch6: dyninst-11.0.0-tbb.patch Patch7: dyninst-11.0.0-amdgpu.patch %if 0%{?rhel} <= 7 Patch8: testsuite-11.0.0-mutateecompiler.patch %endif %global dyninst_base dyninst-%{version} %global testsuite_base testsuite-%{version} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: boost-devel BuildRequires: binutils-devel BuildRequires: cmake BuildRequires: libtirpc-devel BuildRequires: tbb tbb-devel %{?scl:Requires: %scl_runtime} # Extra requires just for the testsuite # NB, there's no separate libstdc++-static for <=el6 %if 0%{?rhel} >= 7 BuildRequires: libstdc++-static %endif BuildRequires: gcc-gfortran glibc-static libxml2-devel %if 0%{?rhel} <= 7 # C++11 requires devtoolset gcc. BuildRequires: %{?scl_prefix}gcc-c++ BuildRequires: %{?scl_prefix}elfutils BuildRequires: %{?scl_prefix}elfutils-devel BuildRequires: %{?scl_prefix}elfutils-libelf-devel BuildRequires: %{?scl_prefix}elfutils-debuginfod-client-devel %else BuildRequires: gcc-c++ BuildRequires: elfutils-devel BuildRequires: elfutils-libelf-devel BuildRequires: elfutils-debuginfod-client-devel %endif Requires: %{?scl_prefix}elfutils # Testsuite files should not provide/require anything %{?filter_setup: %filter_provides_in %{_libdir}/dyninst/testsuite/ %filter_requires_in %{_libdir}/dyninst/testsuite/ %filter_setup } %description Dyninst is an Application Program Interface (API) to permit the insertion of code into a running program. The API also permits changing or removing subroutine calls from the application program. Run-time code changes are useful to support a variety of applications including debugging, performance monitoring, and to support composing applications out of existing packages. The goal of this API is to provide a machine independent interface to permit the creation of tools and applications that use run-time code patching. %package doc Summary: Documentation for using the Dyninst API Group: Documentation %description doc dyninst-doc contains API documentation for the Dyninst libraries. %package devel Summary: Header files for compiling programs with Dyninst Group: Development/System Requires: %{?scl_prefix}dyninst = %{version}-%{release} Requires: boost-devel Requires: tbb-devel %description devel dyninst-devel includes the C header files that specify the Dyninst user-space libraries and interfaces. This is required for rebuilding any program that uses Dyninst. %package static Summary: Static libraries for the compiling programs with Dyninst Group: Development/System Requires: %{?scl_prefix}dyninst-devel = %{version}-%{release} %description static dyninst-static includes the static versions of the library files for the dyninst user-space libraries and interfaces. %package testsuite Summary: Programs for testing Dyninst Group: Development/System Requires: %{?scl_prefix}dyninst = %{version}-%{release} Requires: %{?scl_prefix}dyninst-devel = %{version}-%{release} Requires: %{?scl_prefix}dyninst-static = %{version}-%{release} Requires: glibc-static %description testsuite dyninst-testsuite includes the test harness and target programs for making sure that dyninst works properly. %prep %setup -q -n %{name}-%{version} -c %setup -q -T -D -a 1 # setup source3 boost by copying where cmake can find it to build its own copy cp %{_topdir}/SOURCES/boost_1_66_0.tar.bz2 /tmp # setup source4 tbb by copying where cmake can find it to build its own copy cp %{_topdir}/SOURCES/2018_U6.tar.gz /tmp %patch1 -p1 -b.cmake %patch2 -p1 -b.elfstatic %patch3 -p1 -b.test12 %patch4 -p1 -b.386 %patch5 -p1 -b.dwarf %patch6 -p1 -b.tbb %patch7 -p1 -b.amdgpu %if 0%{?rhel} <= 7 %patch8 -p1 -b.mutateecompiler %endif # cotire seems to cause non-deterministic gcc errors # https://bugzilla.redhat.com/show_bug.cgi?id=1420551 sed -i.cotire -e 's/USE_COTIRE true/USE_COTIRE false/' \ %{dyninst_base}/cmake/shared.cmake %build cd %{dyninst_base} %if 0%{?rhel} <= 7 # C++11 requires devtoolset gcc. %{?scl:PATH=%{_bindir}${PATH:+:${PATH}}} %endif CFLAGS="$CFLAGS $RPM_OPT_FLAGS" LDFLAGS="$LDFLAGS $RPM_LD_FLAGS" %if 0%{?scl:1} CPPFLAGS="-I%{_includedir}" LDFLAGS="-L%{_libdir} -L%{_libdir}/elfutils" %endif %ifarch %{ix86} CFLAGS="$CFLAGS -fno-lto -march=i686" LDFLAGS="$LDFLAGS -fno-lto" %endif CXXFLAGS="$CFLAGS -std=c++11" export CPPFLAGS CFLAGS CXXFLAGS LDFLAGS %cmake \ -DENABLE_STATIC_LIBS=1 \ -DENABLE_DEBUGINFOD=1 \ -DINSTALL_LIB_DIR:PATH=%{_libdir}/dyninst \ -DINSTALL_INCLUDE_DIR:PATH=%{_includedir}/dyninst \ -DINSTALL_CMAKE_DIR:PATH=%{_libdir}/cmake/Dyninst \ -DBoost_NO_BOOST_CMAKE=ON \ -DCMAKE_BUILD_TYPE:STRING=None \ -DCMAKE_SKIP_RPATH:BOOL=YES \ . # Dependencies building tbb, boost before dyninst are not correct LD_RUN_PATH="%{_libdir}" export LD_RUN_PATH # %cmake_build not available on rhel7 # Dependencies do not take into account build of local tbb and local boost make -j1 # Hack to install dyninst nearby, so the testsuite can use it # Hack to install dyninst nearby, so the testsuite can use it make DESTDIR=../install install find ../install -name '*.cmake' -execdir \ sed -i -e 's!%{_prefix}!../install&!' '{}' '+' # cmake mistakenly looks for libtbb.so in the dyninst install dir sed -i '/libtbb.so/ s/".*usr/"\/usr/' $PWD/../install%{_libdir}/cmake/Dyninst/commonTargets.cmake cd ../%{testsuite_base} %cmake \ -DDyninst_DIR:PATH=$PWD/../install%{_libdir}/cmake/Dyninst \ -DINSTALL_DIR:PATH=%{_libdir}/dyninst/testsuite \ -DCMAKE_BUILD_TYPE:STRING=Debug \ -DBoost_NO_BOOST_CMAKE=ON \ -DCMAKE_SKIP_RPATH:BOOL=YES \ . # %cmake_build not available on rhel7 %make_build %install cd %{dyninst_base} %make_install # It doesn't install docs the way we want, so remove them. # We'll just grab the pdfs later, directly from the build dir. rm -v %{buildroot}%{_docdir}/*-%{version}.pdf cd ../%{testsuite_base} %make_install # Ugly hack to mask testsuite files from debuginfo extraction. Running the # testsuite requires debuginfo, so extraction is useless. However, debuginfo # extraction is still nice for the main libraries, so we don't want to disable # it package-wide. The permissions are restored by attr(755,-,-) in files. find %{buildroot}%{_libdir}/dyninst/testsuite/ \ -type f '!' -name '*.a' -execdir chmod 644 '{}' '+' %files %defattr(-,root,root,-) %dir %{_libdir}/dyninst %{_libdir}/dyninst/*.so.* # dyninst mutators dlopen the runtime library %{_libdir}/dyninst/libdyninstAPI_RT.so %doc %{dyninst_base}/COPYRIGHT %doc %{dyninst_base}/LICENSE.md # %config(noreplace) /etc/ld.so.conf.d/* %files doc %defattr(-,root,root,-) %doc %{dyninst_base}/dataflowAPI/doc/dataflowAPI.pdf %doc %{dyninst_base}/dynC_API/doc/dynC_API.pdf %doc %{dyninst_base}/dyninstAPI/doc/dyninstAPI.pdf %doc %{dyninst_base}/instructionAPI/doc/instructionAPI.pdf %doc %{dyninst_base}/parseAPI/doc/parseAPI.pdf %doc %{dyninst_base}/patchAPI/doc/patchAPI.pdf %doc %{dyninst_base}/proccontrol/doc/proccontrol.pdf %doc %{dyninst_base}/stackwalk/doc/stackwalk.pdf %doc %{dyninst_base}/symtabAPI/doc/symtabAPI.pdf %files devel %defattr(-,root,root,-) %{_includedir}/dyninst %{_includedir}/tbb %exclude %{_libdir}/dyninst/libInst.so %{_libdir}/dyninst/*.so %{_libdir}/cmake/Dyninst %files static %defattr(-,root,root,-) %{_libdir}/dyninst/*.a %files testsuite %defattr(-,root,root,-) %{_bindir}/parseThat %dir %{_libdir}/dyninst/testsuite/ %attr(755,root,root) %{_libdir}/dyninst/testsuite/*[!a] %attr(644,root,root) %{_libdir}/dyninst/testsuite/*.a %changelog * Wed May 19 2021 Stan Cox - 11.0.0 - Update to 11.0.0 * Fri Jan 22 2021 Stan Cox - 10.2.1-1 - Update to 10.2.1 * Wed Jul 22 2020 Stan Cox - 10.1.0-5 - Patch checkMutateeCompiler.cmake to force use of %{?scl_prefix}gcc-c++ * Wed Oct 23 2019 Stan Cox - 10.1.0-4 - Remove ppc, ppc64, ppc64le, aarch64 for rhel-7 - rhbz1763156 devtoolset-9-dyninst-10.1.0-3.el7.aarch64 broken - rhbz1763157 devtoolset-9-dyninst-10.1.0-3.el7.ppc64 (big endian) broken * Mon Oct 07 2019 Stan Cox - 10.1.0-3 - Install tbb/include * Mon Sep 02 2019 Stan Cox - 10.1.0-2 - Do not add libtbb*so libboost*so links to dyninst-devel. * Thu Jul 25 2019 Stan Cox - 10.1.0-1 - Update to 10.1.0 * Tue Jan 8 2019 Stan Cox - 9.3.2-6 - rhbz1498558 Needs dyninst-devtoolset installed - rhbz1470149 Use separate debuginfo for dyninst-testsuite - rhbz1647471 so name clashes * Tue Jul 17 2018 William Cohen - 9.3.2-5 - Avoid conditional patching of source files. * Thu Jul 05 2018 Stan Cox - 9.3.2-4 - Make specfile rhel agnostic * Thu Jan 04 2018 Stan Cox - 9.3.2-3 - rhbz1503116 possible soname clashes between base rhel- and devtoolset- dyninst - rhbz1538757 segfault with a glibc built with binutils-2.27: handle R_*_IRELATIVE * Thu Jan 04 2018 Stan Cox - 9.3.2-2 - rhbz1503116 possible soname clashes between base rhel- and devtoolset- dyninst * Fri Jun 16 2017 Stan Cox - 9.3.2-1 - Remove ppc/ppc64 for rhel-6 * Fri Jun 09 2017 Stan Cox - 9.3.2-1 - Rebase to 9.3.2 * Thu Sep 15 2016 Josh Stone - 9.2.0-4 - rhbz1366656: fix ppc64 relocation rewriting - rhbz1366726: check mmap constrains for locality - rhbz1367225: fix x86 codegen for 64-bit offsets * Tue Aug 09 2016 Josh Stone - 9.2.0-3 - rhbz1363794: fix proccontrol attach without an exe. * Tue Jul 26 2016 Josh Stone - 9.2.0-2 - Patch a template '>>' in stackanalysis.h for pre-C++11 users. * Thu Jul 21 2016 Josh Stone - 9.2.0-1 - Update to 9.2.0 * Fri Mar 11 2016 Frank Ch. Eigler - 9.1.0-3 - Export libdyninstAPI_RT_init_maxthreads (ref rhbz1315841/1316956) * Thu Feb 25 2016 Frank Ch. Eigler - 9.1.0-2 - buildroot bump respin * Wed Jan 13 2016 Josh Stone - 9.1.0-1 - Update to 9.1.0 * Mon Sep 21 2015 Josh Stone - 8.2.1-5 - Rebuild for x86_64 only. * Mon Sep 21 2015 Josh Stone - 8.2.1-4 - rhbz1261061: Make sure the system's Boost.cmake is not used. * Wed Jan 07 2015 Josh Stone - 8.2.1-3 - Rebuild for x86_64 only. * Wed Jan 07 2015 Josh Stone - 8.2.1-2 - Rebuild for releng updates. * Wed Dec 17 2014 Josh Stone - 8.2.1-1 - Update to point release 8.2.1. * Tue Aug 19 2014 Josh Stone - 8.2.0-1 - final rebase to 8.2.0, using upstream tag "v8.2.0.1" * Thu Jul 24 2014 Josh Stone - 8.2.0-0.440.gde280f74f40e - update to a newer pre-8.2.0 snapshot * Wed May 21 2014 Josh Stone - 8.2.0-0.374.g593fb2773a48 - more libdyninstAPI_RT symbols, and add testsuite requires * Wed May 21 2014 Josh Stone - 8.2.0-0.373.geaba204a72a3 - fix libdyninstAPI_RT.so symbol visibility * Tue May 20 2014 Josh Stone - 8.2.0-0.372.gdfd4a8842f4c - prerelease build of dyninst 8.2.0 * Tue Nov 26 2013 Josh Stone 8.0-6dw - rhbz987096: backported upstream patches for mid-syscall PTRACE_EVENTs * Wed Apr 17 2013 Josh Stone 8.0-5dw - rhbz855981: backported upstream patch to remove missing-dwarf asserts * Tue Feb 26 2013 Frank Ch. Eigler 8.0-4dw - fix %attr() of testsuite files * Tue Feb 26 2013 Josh Stone 8.0-3dw - rhbz915820: Add a dyninst-testsuite package. * Thu Jan 31 2013 Frank Ch. Eigler - 8.0-2dw - convert to scl - bundle libdwarf temporarily * Tue Nov 20 2012 Josh Stone - Tweak the configure/make commands - Disable the testsuite via configure. - Set the private includedir and libdir via configure. - Set VERBOSE_COMPILATION for make. - Use DESTDIR for make install. * Mon Nov 19 2012 Josh Stone 8.0-1 - Update to release 8.0. - Updated "%files doc" to reflect renames. - Drop the unused BuildRequires libxml2-devel. - Drop the 7.99.x version-munging patch. * Fri Nov 09 2012 Josh Stone 7.99.2-0.29 - Rebase to git e99d7070bbc39c76d6d528db530046c22681c17e * Mon Oct 29 2012 Josh Stone 7.99.2-0.28 - Bump to 7.99.2 per abi-compliance-checker results * Fri Oct 26 2012 Josh Stone 7.99.1-0.27 - Rebase to git dd8f40b7b4742ad97098613876efeef46d3d9e65 - Use _smp_mflags to enable building in parallel. * Wed Oct 03 2012 Josh Stone 7.99.1-0.26 - Rebase to git 557599ad7417610f179720ad88366c32a0557127 * Thu Sep 20 2012 Josh Stone 7.99.1-0.25 - Rebase on newer git tree. - Bump the fake version to 7.99.1 to account for ABI differences. - Enforce the minimum libdwarf version. - Drop the upstreamed R_PPC_NUM patch. * Wed Aug 15 2012 Karsten Hopp 7.99-0.24 - check if R_PPC_NUM is defined before using it, similar to R_PPC64_NUM * Mon Jul 30 2012 Josh Stone 7.99-0.23 - Rebase on newer git tree. - Update license files with upstream additions. - Split documentation into -doc subpackage. - Claim ownership of %{_libdir}/dyninst. * Fri Jul 27 2012 William Cohen - 7.99-0.22 - Correct requires for dyninst-devel. * Wed Jul 25 2012 Josh Stone - 7.99-0.21 - Rebase on newer git tree - Update context in dyninst-git.patch - Drop dyninst-delete_array.patch - Drop dyninst-common-makefile.patch * Wed Jul 18 2012 Fedora Release Engineering - 7.99-0.20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Mon Jul 16 2012 William Cohen - 7.99-0.19 - Patch common/i386-unknown-linux2.4/Makefile to build. * Fri Jul 13 2012 William Cohen - 7.99-0.18 - Rebase on newer git tree the has a number of merges into it. - Adjust spec file to allow direct use of git patches - Fix to eliminate unused varables. - Proper delete for array. * Thu Jun 28 2012 William Cohen - 7.99-0.17 - Rebase on newer git repo. * Thu Jun 28 2012 William Cohen - 7.99-0.16 - Eliminate dynptr.h file use with rebase on newer git repo. * Mon Jun 25 2012 William Cohen - 7.99-0.14 - Rebase on newer git repo. * Tue Jun 19 2012 William Cohen - 7.99-0.12 - Fix static library and header file permissions. - Use sources from the dyninst git repositories. - Fix 32-bit library versioning for libdyninstAPI_RT_m32.so. * Wed Jun 13 2012 William Cohen - 7.99-0.11 - Fix library versioning. - Move .so links to dyninst-devel. - Remove unneded clean section. * Fri May 11 2012 William Cohen - 7.0.1-0.9 - Clean up Makefile rules. * Sat May 5 2012 William Cohen - 7.0.1-0.8 - Clean up spec file. * Wed May 2 2012 William Cohen - 7.0.1-0.7 - Use "make install" and do staged build. - Use rpm configure macro. * Thu Mar 15 2012 William Cohen - 7.0.1-0.5 - Nuke the bundled boost files and use the boost-devel rpm instead. * Mon Mar 12 2012 William Cohen - 7.0.1-0.4 - Initial submission of dyninst spec file.