Compare commits
No commits in common. "dda7dd4115511db886871dba9008901b6d399941" and "8ea35c16a70b25f6dfa12ac29ed89601568d6ff7" have entirely different histories.
dda7dd4115
...
8ea35c16a7
@ -1,39 +0,0 @@
|
|||||||
From 5482a621c75baad6dee31f5f6a1d38bf5849d4eb Mon Sep 17 00:00:00 2001
|
|
||||||
From: si-gui <245140120@qq.com>
|
|
||||||
Date: Mon, 21 Sep 2020 20:01:10 +0800
|
|
||||||
Subject: [PATCH] Fix ragel-d,ragel-go,ragel-java such command segfault error
|
|
||||||
|
|
||||||
Signed-off-by: si-gui <245140120@qq.com>
|
|
||||||
---
|
|
||||||
src/inputdata.cc | 14 ++++++++++++--
|
|
||||||
1 file changed, 12 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/inputdata.cc b/src/inputdata.cc
|
|
||||||
index 8a6de8b..e6d4f73 100644
|
|
||||||
--- a/src/inputdata.cc
|
|
||||||
+++ b/src/inputdata.cc
|
|
||||||
@@ -1105,9 +1105,19 @@ void InputData::wait( const char *what, pid_t pid )
|
|
||||||
int InputData::rlhcMain( int argc, const char **argv )
|
|
||||||
{
|
|
||||||
pid_t pid = 0;
|
|
||||||
+ int code = 0;
|
|
||||||
+ try {
|
|
||||||
+ parseArgs( argc, argv );
|
|
||||||
+ checkArgs();
|
|
||||||
+
|
|
||||||
+ if ( !process() )
|
|
||||||
+ abortCompile( 1 );
|
|
||||||
+ }
|
|
||||||
+ catch ( const AbortCompile &ac ) {
|
|
||||||
+ code = ac.code;
|
|
||||||
+ return code;
|
|
||||||
+ }
|
|
||||||
|
|
||||||
- parseArgs( argc, argv );
|
|
||||||
- checkArgs();
|
|
||||||
makeDefaultFileName();
|
|
||||||
makeTranslateOutputFileName();
|
|
||||||
|
|
||||||
--
|
|
||||||
2.23.0
|
|
||||||
|
|
||||||
Binary file not shown.
84
ragel.spec
84
ragel.spec
@ -1,84 +0,0 @@
|
|||||||
%bcond_with bootstrap
|
|
||||||
|
|
||||||
Name: ragel
|
|
||||||
Version: 7.0.0.12
|
|
||||||
Release: 2
|
|
||||||
Summary: Finite state machine compiler
|
|
||||||
|
|
||||||
# aapl/ is the LGPLv2+
|
|
||||||
License: MIT and LGPLv2+
|
|
||||||
URL: http://www.colm.net/open-source/%{name}/
|
|
||||||
Source0: https://www.colm.net/files/%{name}/%{name}-%{version}.tar.gz
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: automake
|
|
||||||
BuildRequires: libtool
|
|
||||||
BuildRequires: make
|
|
||||||
%if %{with bootstrap}
|
|
||||||
BuildRequires: kelbt
|
|
||||||
BuildRequires: ragel
|
|
||||||
%endif
|
|
||||||
BuildRequires: colm-devel
|
|
||||||
|
|
||||||
# Unfortunately, upstream doesn't exist and not possible to find version
|
|
||||||
Provides: bundled(aapl)
|
|
||||||
Patch0000: 0001-Fix-ragel-d-ragel-go-ragel-java-such-command-segfault.patch
|
|
||||||
|
|
||||||
%description
|
|
||||||
Ragel compiles executable finite state machines from regular languages.
|
|
||||||
Ragel targets C, C++ and ASM. Ragel state machines can not only recognize
|
|
||||||
byte sequences as regular expression machines do, but can also execute code
|
|
||||||
at arbitrary points in the recognition of a regular language. Code embedding
|
|
||||||
is done using inline operators that do not disrupt the regular language syntax.
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Development libraries header files for %{name}
|
|
||||||
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
|
||||||
%{summary}.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -p1
|
|
||||||
# Do not pollute with docs
|
|
||||||
sed -i -e "/dist_doc_DATA/d" Makefile.am
|
|
||||||
|
|
||||||
%build
|
|
||||||
autoreconf -vfi
|
|
||||||
%configure --disable-static
|
|
||||||
%make_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%make_install
|
|
||||||
find %{buildroot}%{_libdir} -type f -name '*.la' -print -delete
|
|
||||||
install -p -m 0644 -D %{name}.vim %{buildroot}%{_datadir}/vim/vimfiles/syntax/%{name}.vim
|
|
||||||
|
|
||||||
%ldconfig_scriptlets
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license COPYING
|
|
||||||
%doc CREDITS ChangeLog
|
|
||||||
%{_bindir}/%{name}
|
|
||||||
%{_bindir}/%{name}-*
|
|
||||||
%{_mandir}/man1/%{name}.1*
|
|
||||||
%{_libdir}/libfsm.so.*
|
|
||||||
%{_libdir}/libragel.so.*
|
|
||||||
%{_datarootdir}/%{name}.lm
|
|
||||||
%dir %{_datadir}/vim
|
|
||||||
%dir %{_datadir}/vim/vimfiles
|
|
||||||
%dir %{_datadir}/vim/vimfiles/syntax
|
|
||||||
%{_datadir}/vim/vimfiles/syntax/%{name}.vim
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%{_libdir}/libfsm.so
|
|
||||||
%{_libdir}/libragel.so
|
|
||||||
%{_includedir}/%{name}/
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Mon Sep 21 2020 Guoshuai Sun <sunguoshuai@huawei.com> - 7.0.0.12-2
|
|
||||||
- Fix ragel-d ragel-go ragel-java eg. command segfault
|
|
||||||
|
|
||||||
* Mon Jun 22 2020 Yikun Jiang <yikunkero@gmail.com> - 7.0.0.12-1
|
|
||||||
- Package init
|
|
||||||
Loading…
x
Reference in New Issue
Block a user