!11 增加debug包

From: @licihua 
Reviewed-by: @jingxiaolu 
Signed-off-by: @jingxiaolu
This commit is contained in:
Monday 2024-07-10 08:44:30 +00:00 committed by openeuler-ci-bot
parent de8ee01a68
commit c7f326822c

View File

@ -1,7 +1,7 @@
Summary : An open source CoreSight(tm) Trace Decode library Summary : An open source CoreSight(tm) Trace Decode library
Name : OpenCSD Name : OpenCSD
Version : 1.3.3 Version : 1.3.3
Release : 3 Release : 4
License : BSD License : BSD
Source : %{name}-%{version}.tar.gz Source : %{name}-%{version}.tar.gz
BuildRoot : %{_tmppath}/%{name}-%{version}-${release}-root BuildRoot : %{_tmppath}/%{name}-%{version}-${release}-root
@ -15,19 +15,20 @@ BuildRequires : gcc-c++ make
3. Packet Decode : Convert the packets into fully decoded trace describing the program flow on a core. 3. Packet Decode : Convert the packets into fully decoded trace describing the program flow on a core.
The library is implemented in C++ with an optional "C" API. The library is implemented in C++ with an optional "C" API.
%global debug_package %{nil}
%prep %prep
%setup -q %setup -q
%build %build
make -C decoder/build/linux CPPFLAGS="-fPIE" LDFLAGS="-s -pie -Wl,-z,defs" -j export CFLAGS="$RPM_OPT_FLAGS -fPIE -pie"
export CXXFLAGS="$RPM_OPT_FLAGS -fPIE -pie"
make -C decoder/build/linux %{?_smp_mflags}
%install %install
rm -rf %{buildroot} rm -rf %{buildroot}
make -C decoder/build/linux install PREFIX=%{buildroot}/usr LIB_PATH=lib64 make -C decoder/build/linux install PREFIX=%{buildroot}/usr LIB_PATH=%{_lib} DEF_SO_PERM=755
%clean %clean
@ -35,7 +36,6 @@ rm -rf %{buildroot}
%files %files
%defattr(-,root,root,0644)
%doc README.md LICENSE %doc README.md LICENSE
%{_includedir}/opencsd %{_includedir}/opencsd
%{_libdir}/libopencsd* %{_libdir}/libopencsd*
@ -44,6 +44,10 @@ rm -rf %{buildroot}
%changelog %changelog
* Wed Apr 03 2024 guoqinglan <guoqinglan@kylinsec.com.cn> - 1.3.3-4
- enable debug package
- change permission from 644 to 755
* Thu Mar 16 2023 huangfangrun <huangfangrun1@h-partners.com> - 1.3.3-3 * Thu Mar 16 2023 huangfangrun <huangfangrun1@h-partners.com> - 1.3.3-3
- [Compile Option] Add -fPIE -s and -pie options - [Compile Option] Add -fPIE -s and -pie options