!3 支持astream生成调试信息软件包

From: @barbo 
Reviewed-by: @xiexiuqi 
Signed-off-by: @xiexiuqi
This commit is contained in:
openeuler-ci-bot 2022-09-05 10:50:56 +00:00 committed by Gitee
commit af209dc3f6
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 44 additions and 7 deletions

View File

@ -0,0 +1,36 @@
From aa5bfaa117ebe48366e614177abeaddbeb1fb0c0 Mon Sep 17 00:00:00 2001
From: hongrongxuan <389817374@qq.com>
Date: Mon, 5 Sep 2022 16:50:52 +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 1d9d63e..b1f20c0 100755
--- 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.36.1

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