support debug package

This commit is contained in:
hongrongxuan 2022-09-05 15:35:13 +08:00
parent 85f15ed55c
commit 1363afa043
2 changed files with 44 additions and 7 deletions

View File

@ -0,0 +1,36 @@
From 04743b469ff68fe20ec15262458325bf9406d387 Mon Sep 17 00:00:00 2001
From: hongrongxuan <389817374@qq.com>
Date: Fri, 2 Sep 2022 20:20:20 +0800
Subject: [PATCH] add -g option to compile the code
---
src/Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Makefile b/src/Makefile
index 854993d..0f87943 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -4,10 +4,10 @@ PREFIX=/usr
BINDIR=$(PREFIX)/bin
astream : astream.c astream.h astream_log.o
- cc -Wall -o astream astream.c astream_log.o
+ cc -g -Wall -o astream astream.c astream_log.o
astream_log.o : astream_log.c astream_log.h
- cc -Wall -c astream_log.c
+ cc -g -Wall -c astream_log.c
install:
install -d $(DESTDIR)$(BINDIR)
@@ -16,4 +16,4 @@ install:
uninstall:
rm -f $(DESTDIR)$(BINDIR)/$(PROG)
clean:
- rm -f astream astream.o astream_log.o
\ No newline at end of file
+ rm -f astream astream.o astream_log.o
--
2.35.1.windows.2

View File

@ -1,20 +1,18 @@
Name: astream
Version: v1.0
Release: 1
Release: 2
Summary: an automatic multi-stream implementation tool for openEuler
License: MulanPSL-2.0
URL: https://gitee.com/openeuler/astream
Source0: %{name}-%{version}.tar.gz
Patch0: 0001-add-g-option-to-compile-the-code.patch
%description
astream is an automatic multi-stream implementation tool for openEuler
# skip debuginfo packages
%global debug_package %{nil}
%prep
%autosetup -n %{name}-%{version}
%autosetup -n %{name}-%{version} -p1
%build
cd src
@ -30,7 +28,10 @@ cp src/astream %{buildroot}/%{_bindir}
%doc README.md
%changelog
* Mon Aug 29 2022 hongrongxuan <389817374@qq.com> - v1.0-1
* Mon Sep 5 2022 hongrongxuan <hongrongxuan@huawei.com> - v1.0-2
- add -g option to compiler the code
* Mon Aug 29 2022 hongrongxuan <hongrongxuan@huawei.com> - v1.0-1
- Type:Init
- ID:NA
- SUG:NA