Displaying 20 results from an estimated 30 matches for "regerror".
Did you mean:
gerror
2012 Jan 03
2
[LLVMdev] 'Reference Out Of Range' error building llvm/clang with -O4
This is compiling the Trunk revision from last Friday:
reference out of range from _llvm_regerror (1000437F0) in
../../lib/libLLVMSupport.a(regerror.c.o) to cstring=0 (0) in
../../lib/libLLVMSupport.a(regerror.c.o)
ld: rel32 out of range in _llvm_regerror from
../../lib/libLLVMSupport.a(regerror.c.o)
clang-3: error: linker command failed with exit code 1 (use -v to see
invocation)
OS X 10.6, c...
2001 Jan 23
11
cc & no 64bit int patches
Here are a couple of patches against the CVS (Jan 22 18:41 PST)
Some C++ comments found their way into ssh.h
The no64.patch puts ifdefs around buffer_get_int64()
now in bufaux.[c,h]
--
Tim Rice Multitalents (707) 887-1469
tim at multitalents.net
-------------- next part --------------
--- ssh.h.old Mon Jan 22 18:40:58 2001
+++ ssh.h Mon Jan 22 19:02:02 2001
@@ -25,8 +25,10 @@
# include
1997 Jun 10
0
R-beta: Compiling 0.49 on IRIX6.1
Hi there,
I am compiling R-0.49 on my SGI Indigo 2 R8000 machine and it stopped
in the middle. Could anyone help me to fix it?
Many thanks!
p.s.: The last lines of message:
cc -g -I../include -DPOSIX_MISTAKE -c regerror.c
cc -g -I../include -DPOSIX_MISTAKE -c regexec.c
"engine.c", line 604: warning(1110): statement is unreachable
break;
^
"engine.c", line 610: warning(1110): statement is unreachable
break;
^
"engine.c", line 616: warning(1110): statement is unreacha...
1997 Aug 14
0
R-alpha: Compiling 0.49 on IRIX6.1
...d Kingdom
p-p_|__|__|_____|__|__|_q-q Tel: 44 (121) 414-5533 (O)
_-[EEEEM==M==MM===MM==M==MEEEE]-_ Tel: 44 (121) 454-4018 (H)
Fax: 44 (121) 414-5528
p.s.: The last few lines of message when compiling R-0.49:
cc -g -I../include -DPOSIX_MISTAKE -c regerror.c
cc -g -I../include -DPOSIX_MISTAKE -c regexec.c
"engine.c", line 604: warning(1110): statement is unreachable
break;
^
"engine.c", line 610: warning(1110): statement is unreachable
break;
^
"engine.c", line 616: warning(1110): statement is unreacha...
1997 Aug 13
1
R-beta: compiling R-5.0 on IRIX6.1
.... Could anyone help me to fix it?
Many thanks!
p.s.: The last lines of message:
: ../lib/libappl.a
cd regex; make
cc -g -I../include -DPOSIX_MISTAKE -c regcomp.c
"regcomp.c", line 753: warning(1110): statement is unreachable
break;
^
cc -g -I../include -DPOSIX_MISTAKE -c regerror.c
cc -g -I../include -DPOSIX_MISTAKE -c regexec.c
"engine.c", line 604: warning(1110): statement is unreachable
break;
^
"engine.c", line 610: warning(1110): statement is unreachable
break;
^
"engine.c", line 616: warning(1110): statement is unreacha...
1997 Aug 13
1
R-beta: compiling R-5.0 on IRIX6.1
.... Could anyone help me to fix it?
Many thanks!
p.s.: The last lines of message:
: ../lib/libappl.a
cd regex; make
cc -g -I../include -DPOSIX_MISTAKE -c regcomp.c
"regcomp.c", line 753: warning(1110): statement is unreachable
break;
^
cc -g -I../include -DPOSIX_MISTAKE -c regerror.c
cc -g -I../include -DPOSIX_MISTAKE -c regexec.c
"engine.c", line 604: warning(1110): statement is unreachable
break;
^
"engine.c", line 610: warning(1110): statement is unreachable
break;
^
"engine.c", line 616: warning(1110): statement is unreacha...
2009 Jul 31
2
[LLVMdev] llvm-gcc build of inferno/plan 9 'mk' fails
...h
removing old libraries and binaries
llvm-gcc-4.2 -I/opt/local/include -D_DEBUG -D_GNU_SOURCE
-D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O3 -march=i386
--emit-llvm -O0 -c -I/usr/local/inferno/MacOSX/386/include
-I/usr/local/inferno/include -I/usr/local/inferno/utils/include
regaux.c regcomp.c regerror.c regexec.c regsub.c rregexec.c rregsub.c
llvm-ar crvs /usr/local/inferno/MacOSX/386/lib/libregexp.a regaux.o
regcomp.o regerror.o regexec.o regsub.o rregexec.o rregsub.o
llvm-ranlib /usr/local/inferno/MacOSX/386/lib/libregexp.a
llvm-gcc-4.2 -I/opt/local/include -D_DEBUG -D_GNU_SOURCE
-D__STDC_LIMI...
1997 Aug 14
0
R-alpha: Re: R-beta: R-0.49 on IRIX6.1 does not compile
...g.
[ I also get a few of those when compiling
under Solaris 2.5.1 with Sun's cc.]
They shouldn't have caused your compilation problem.
[now, see below]
XC> p.s.: The last few lines of message when compiling R-0.49:
XC> cc -g -I../include -DPOSIX_MISTAKE -c regerror.c
XC> cc -g -I../include -DPOSIX_MISTAKE -c regexec.c
XC> "engine.c", line 604: warning(1110): statement is unreachable
XC> break;
XC> ^
XC> "engine.c", line 610: warning(1110): statement is unreachable
XC> break; ^
XC>...
2007 Aug 23
1
[nut-commits] svn commit r1073 - in trunk: . drivers
...r compiling a regular expression. On success,
> - store the compiled regular expression (or NULL) in *compiled, and
> - return 0. On error with errno set, return -1. If the supplied
> - regular expression is unparseable, return -2 (an error message can
> - then be retrieved with regerror(3)). Note that *compiled will be an
> - allocated value, and must be freed with regfree(), then free(), see
> - regex(3). As a special case, if regex==NULL, then set
> - *compiled=NULL (regular expression NULL is intended to match
> - anything). */
> -static inline int compil...
2017 Jan 25
2
LLVM 3.9.1 build race?
...Twine.cpp.o CMakeFiles/LLVMSupport.dir/Unicode.cpp.o CMakeFiles/LLVMSupport.dir/YAMLParser.cpp.o CMakeFiles/LLVMSupport.dir/YAMLTraits.cpp.o CMakeFiles/LLVMSupport.dir/raw_os_ostream.cpp.o CMakeFiles/LLVMSupport.dir/raw_ostream.cpp.o CMakeFiles/LLVMSupport.dir/regcomp.c.o CMakeFiles/LLVMSupport.dir/regerror.c.o CMakeFiles/LLVMSupport.dir/regexec.c.o CMakeFiles/LLVMSupport.dir/regfree.c.o CMakeFiles/LLVMSupport.dir/regstrlcpy.c.o CMakeFiles/LLVMSupport.dir/Atomic.cpp.o CMakeFiles/LLVMSupport.dir/DynamicLibrary.cpp.o CMakeFiles/LLVMSupport.dir/Errno.cpp.o CMakeFiles/LLVMSupport.dir/Host.cpp.o CMakeFiles...
2002 Nov 11
0
Regular Expression support
...+ (options®_EXTENDED)?" REG_EXTENDED":""
+ );
+
+ status=regcomp(ex->regexp, modifiedPattern, options); // POSIX regular expression compile
+ free(modifiedPattern);
+ if(status != 0){
+ regerror(status, ex->regexp, errbuf, reg_errbuf_size);
+ rprintf(FERROR, "Regular expression compile error(pattern='%s'): %s\n", pattern, errbuf);
+ regfree(ex->regexp);
+ free(ex->regexp);
+ ex->regexp=NULL;
+ re...
2015 Jan 08
1
New version of Rtools for Windows
...ptr for now), the
exception handling should be consistent and it is supposed to up to
~15% faster[3].
The initial build crashed with the following error:
gcc -std=gnu99 -m64 -I../../include -I. -DHAVE_CONFIG_H -O3 -Wall
-pedantic -mtune=core2 -c xmalloc.c -o xmalloc.o
ar crs libtre.a regcomp.o regerror.o regexec.o tre-ast.o tre-compile.o
tre-match -approx.o tre-match-backtrack.o tre-match-parallel.o
tre-mem.o tre-parse.o tre-stack.o xmalloc.o
gcc -std=gnu99 -m64 -O3 -Wall -pedantic -mtune=core2 -c compat.c -o compat.o
compat.c:65:5: error: redefinition of 'snprintf'
int snprintf(char...
2011 Aug 20
4
trouble installing 1.9.2
hello,
I am trying install Ruby 1.9.2 on my MacBook Pro Lion. I am following
along with the install instructions at ruby.railstutorial.org. I am the
point were you run rvm install 1.9.2. Below in what I see in the
terminal when installing and below that my rvm log. Thanks for any help.
rvm install 1.9.2
Installing Ruby from source to: /Users/user/.rvm/rubies/ruby-1.9.2-p290,
this may take a
2015 Jan 08
0
New version of Rtools for Windows
...it is supposed to up to
>> ~15% faster[3].
>>
>> The initial build crashed with the following error:
>>
>> gcc -std=gnu99 -m64 -I../../include -I. -DHAVE_CONFIG_H -O3 -Wall
>> -pedantic -mtune=core2 -c xmalloc.c -o xmalloc.o
>> ar crs libtre.a regcomp.o regerror.o regexec.o tre-ast.o tre-compile.o
>> tre-match -approx.o tre-match-backtrack.o tre-match-parallel.o
>> tre-mem.o tre-parse.o tre-stack.o xmalloc.o
>> gcc -std=gnu99 -m64 -O3 -Wall -pedantic -mtune=core2 -c compat.c -o compat.o
>> compat.c:65:5: error: redefinition of &...
2015 Jan 08
1
New version of Rtools for Windows
...;>> ~15% faster[3].
>>>
>>> The initial build crashed with the following error:
>>>
>>> gcc -std=gnu99 -m64 -I../../include -I. -DHAVE_CONFIG_H? -O3 -Wall
>>> -pedantic -mtune=core2???-c xmalloc.c -o xmalloc.o
>>> ar crs libtre.a regcomp.o regerror.o regexec.o tre-ast.o tre-compile.o
>>> tre-match -approx.o tre-match-backtrack.o tre-match-parallel.o
>>> tre-mem.o tre-parse.o tre-stack.o xmalloc.o
>>> gcc -std=gnu99 -m64???-O3 -Wall -pedantic -mtune=core2???-c compat.c -o compat.o
>>> compat.c:65:5: error: r...
2018 Feb 09
1
R Compilation gets stuck on Windows 64
Please note that building R on Windows is documented in "R Installation
and Administration", including links to external software. Particularly
there is a link to texinfo which is part of Rtools. The documentation is
maintained and it is a sufficient source of information for building R
on Windows.
https://cran.r-project.org/doc/manuals/r-release/R-admin.html
2015 Jan 08
0
New version of Rtools for Windows
...;>> ~15% faster[3].
>>>
>>> The initial build crashed with the following error:
>>>
>>> gcc -std=gnu99 -m64 -I../../include -I. -DHAVE_CONFIG_H -O3 -Wall
>>> -pedantic -mtune=core2 -c xmalloc.c -o xmalloc.o
>>> ar crs libtre.a regcomp.o regerror.o regexec.o tre-ast.o tre-compile.o
>>> tre-match -approx.o tre-match-backtrack.o tre-match-parallel.o
>>> tre-mem.o tre-parse.o tre-stack.o xmalloc.o
>>> gcc -std=gnu99 -m64 -O3 -Wall -pedantic -mtune=core2 -c compat.c -o compat.o
>>> compat.c:65:5: error: r...
2015 Sep 03
2
Fuzzing complex programs
On Thu, Sep 3, 2015 at 6:45 PM, Kostya Serebryany <kcc at google.com> wrote:
> Did you build the Postgres code with -fsanitize-coverage=... ?
Yes:
CC = clang
CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith
-Wdeclaration-after-statement -Wendif-labels
-Wmissing-format-attribute -Wformat-security -fno-strict-aliasing
-fwrapv -Wno-unused-command-line-argument -g -O0 -fsanitize=address
2012 Aug 11
2
compile fails with x86_64-alpine-linux-uclibc-gcc
...y `/dev/shm/portage/dev-lang/R-2.15.1/work/R-2.15.1/src/extra'
make[3]: Entering directory `/dev/shm/portage/dev-lang/R-2.15.1/work/R-2.15.1/src/extra/tre'
make[4]: Entering directory `/dev/shm/portage/dev-lang/R-2.15.1/work/R-2.15.1/src/extra/tre'
making regcomp.d from regcomp.c
making regerror.d from regerror.c
making regexec.d from regexec.c
making tre-ast.d from tre-ast.c
making tre-compile.d from tre-compile.c
making tre-match-approx.d from tre-match-approx.c
making tre-match-backtrack.d from tre-match-backtrack.c
making tre-match-parallel.d from tre-match-parallel.c
making tre-mem.d...
2004 Feb 02
3
layer7-filter with iptables problem
Hi
iam running FEDORA,
i have installed Source of iptable 1.2.9 with the patch layer7-iptables
patch done with out any errors
and i applied patch in kernel to the layer 7 patch
and i have select the required option by doing
make menyconfig
done
make dep
make bzImage
make modules
make modules_install
make install
and rebooted with customer kernel
when i type
iptables -t mangle -A