Displaying 20 results from an estimated 35 matches for "psignal".
Did you mean:
signal
2015 Aug 21
0
Problem with psignal.c for Windows builds
Continuing with problems that I've uncovered while getting pqR to work
on Windows...
The file src/ghuwin32/psignal.c (used only in Windows builds) fails to
use the sigset_t type in all places where it should, using "int" some
places instead.
Here is a diff of the needed corrections:
@@ -253,7 +253,7 @@ sighandler_t signal(int signal_Number, sighandler_t signal_Handler)
int sigaddset(sigset_t* sigs...
2015 Aug 24
0
Problem with psignal.c for Windows builds
One thing I forgot in my previous message about problems with
psignal.c on Rtools for Windows...
One also needs to change src/gnuwin32/fixed/h/psignal.h
At a minimum, one needs the following changes:
@@ -122,8 +129,8 @@ typedef struct
/* Prototype stuff ***********************************************************/
-int sigsetmask(int signal_Block_Ma...
2007 Jan 24
2
[LLVMdev] patch - update libiberty/psignal to latest prototypes.
...frontend building on an FC5
x86 box .
[ramana at venglathur gcc]$ svn diff
Index: libiberty/strsignal.c
===================================================================
--- libiberty/strsignal.c (revision 254)
+++ libiberty/strsignal.c (working copy)
@@ -557,8 +557,8 @@
void
psignal (signo, message)
- unsigned signo;
- char *message;
+ int signo;
+ const char *message;
{
if (signal_names == NULL)
{
--
cheers
Ramana
Ramana Radhakrishnan
GNU Tools
Celunite Inc (www.celunite.com)
2007 Jan 24
0
[LLVMdev] patch - update libiberty/psignal to latest prototypes.
On Jan 24, 2007, at 4:14 AM, Ramana Radhakrishnan wrote:
> Hi ,
>
> I needed to apply this patch to get the GCC frontend building on an
> FC5
> x86 box .
I am curious, what kind of failure are you seeing ?
Thanks,
-
Devang
2007 Jan 24
1
[LLVMdev] patch - update libiberty/psignal to latest prototypes.
Devang,
On Wed, 2007-01-24 at 10:28 -0800, Devang Patel wrote:
> On Jan 24, 2007, at 4:14 AM, Ramana Radhakrishnan wrote:
>
> > Hi ,
> >
> > I needed to apply this patch to get the GCC frontend building on an
> > FC5
> > x86 box .
>
> I am curious, what kind of failure are you seeing ?
I should have mentioned in the email : Here's my earlier post
2007 Feb 06
1
R from SVN fails to build on win32
...om console.c
making dataentry.d from dataentry.c
making dynload.d from dynload.c
making edit.d from edit.c
making editor.d from editor.c
making embeddedR.d from embeddedR.c
making extra.d from extra.c
making opt.d from opt.c
making pager.d from pager.c
making preferences.d from preferences.c
making psignal.d from psignal.c
making rhome.d from rhome.c
making rui.d from rui.c
making run.d from run.c
making shext.d from shext.c
making sys-win32.d from sys-win32.c
making system.d from system.c
making dos_glob.d from dos_glob.c
gcc -O3 -Wall -pedantic -std=gnu99 -I../include -I. -DHAVE_CONFIG_H
-DR_DLL_B...
2007 Jan 22
0
[LLVMdev] more llvmgcc build issues.
...-O2 -I.
-I/home/ramana/llvm/llvmgccfrontend/llvmgcc4-source/gcc/libiberty/../include -W -Wall -Wtraditional -pedantic /home/ramana/llvm/llvmgccfrontend/llvmgcc4-source/gcc/libiberty/strsignal.c -o strsignal.o
/home/ramana/llvm/llvmgccfrontend/llvmgcc4-source/gcc/libiberty/strsignal.c: In function ‘psignal’:
/home/ramana/llvm/llvmgccfrontend/llvmgcc4-source/gcc/libiberty/strsignal.c:562: error: argument ‘signo’ doesn’t match prototype
/usr/include/signal.h:141: error: prototype declaration
/home/ramana/llvm/llvmgccfrontend/llvmgcc4-source/gcc/libiberty/strsignal.c:562: error: argument ‘message’ doesn...
2005 Apr 07
1
build rpvm under cygwin
...e R myself under CYGWIN but runs
into the following problem:
building from src typing make
gcc -I. -I../../src/include -I../../src/include
-I/usr/local/include -DHAVE_CON
FIG_H -D__NO_MATH_INLINES -g -O2 -c dynload.c -o
dynload.o
In file included from dynload.c:35:
../../src/include/Defn.h:60:22: psignal.h: No such
file or directory
I found the psignal.h header file under
gnuwin32/fixed/h/psignal.h how do incoperate this
udner cygwin?
I also tried to type build under src/gnuwin32 but get
another error:
$ make
make: ./Rpwd.exe: Command not found
make[1]: ./Rpwd.exe: Command not found
make --no-pr...
2023 Nov 12
1
Segmentation fault early in compilation of revision 85514
...C/LTO_FC_OPT is "-flto=1 -fuse-linker-plugin".
Any explanation or suggestions would be appreciated.
Thank you,
Avi
```
installing zoneinfo
making console.d from console.c
making dynload.d from dynload.c
making embeddedR.d from embeddedR.c
making preferences.d from preferences.c
making psignal.d from psignal.c
making rui.d from rui.c
making system.d from system.c
gcc -I../include -I. -I../extra -DHAVE_CONFIG_H -DR_DLL_BUILD -O3 -Wall
-pedantic -march=native -pipe -mno-rtm -flto=1 -fuse-linker-plugin -c
console.c -o console.o
gcc -I../include -I. -I../extra -DHAVE_CONFIG_H -DR_DLL_BU...
2024 Jun 30
0
Making use of win32_segv
...sage from the SIGSEGV handler
and (if we're lucky and the memory manager is still mostly intact) an
R-level traceback. A similar signal handler, win32_segv(), is defined
in src/main.c for use on Windows, but I am not seeing a way it could be
called in the current codebase. The file src/gnuwin32/psignal.c that's
responsible for signals on Windows handles Ctrl+C but does not emit
SIGSEGV or SIGILL. Can we make use of vectored exception handling [3]
to globally catch unhandled exceptions in the Win32 process and
transform them into raise(SIGSEGV)?
One potential source of problems is threading....
2018 Feb 13
2
R Compilation gets stuck on Windows 64
...Indrajit Sen Gupta
<indrajitsg at gmail.com> wrote:
> Hi Avraham,
>
> I tried with the patched version. The same error message.
>
> gcc -std=gnu99 -m64 -shared -s -mwindows -o R.dll R.def console.o dynload.o
> editor.o embeddedR.o extra.o malloc.o opt.o pager.o preferences.o psignal.o
> rhome.o rt_complete.o rui.o run.o shext.o sys-win32.o system.o dos_wglob.o
> dllversion.o ../main/libmain.a ../appl/libappl.a ../nmath/libnmath.a
> getline/gl.a ../extra/xdr/libxdr.a ../extra/intl/libintl.a
> ../extra/trio/libtrio.a ../extra/tzone/libtz.a ../extra/tre/libtre.a
>...
2009 Jan 16
1
interrupting R from a GUI
...with other devices too). Of course, one can interrupt R
nicely from the console with Ctrl-C (or Esc in Rgui), but I need to do
it from a GUI. Callbacks run in a new thread, so obviously stop() etc
will not work. I tried to look into how Rgui does it...
https://svn.r-project.org/R/trunk/src/gnuwin32/psignal.c
?...but it is beyond me.
Alternatively, might there be a way to tell the cairoDevice widget to
stop drawing, somehow?
Any help would be appreciated.
-Felix
--
Felix Andrews / ???
http://www.neurofractal.org/felix/
3358 543D AAC6 22C2 D336 80D9 360B 72DD 3E4C F5D8
2010 May 06
2
help on compile r-2.10.0 on 64 bit window
...-DR_ARCH='"x64"' -c malloc.c -o malloc.o
x86_64-w64-mingw32-windres -I../include -i dllversion.rc -o dllversion.o
x86_64-w64-mingw32-gcc -std=gnu99 -shared -s -mwindows -o R.dll R.def console.o
dataentry.o dynload.o edit.o editor.o embeddedR.o extra.o opt.o pager.o preferen
ces.o psignal.o rhome.o rt_complete.o rui.o run.o shext.o sys-win32.o system.o d
os_wglob.o malloc.o ../main/libmain.a ../appl/libappl.a ../nmath/libnmath.a getl
ine/gl.a ../extra/xdr/libxdr.a ../extra/pcre/libpcre.a ../extra/bzip2/libbz2.a .
./extra/intl/libintl.a ../extra/trio/libtrio.a ../extra/tzone/libtz.a...
2018 Feb 09
2
R Compilation gets stuck on Windows 64
On Fri, Feb 9, 2018 at 9:29 AM, Kenny Bell <kmbell56 at gmail.com> wrote:
> I suggest that you work off the build process in the rwinlib repository so
> you are starting from something that you know works and already incorporates
> the set of dependencies you need.
Hello, Kenny.
For what it's worth I've been successfully building R+OpenBLAS on
Windows64 since 2013, which
2018 Feb 13
2
R Compilation gets stuck on Windows 64
...Hi Avraham,
>> >
>> > I tried with the patched version. The same error message.
>> >
>> > gcc -std=gnu99 -m64 -shared -s -mwindows -o R.dll R.def console.o
>> dynload.o
>> > editor.o embeddedR.o extra.o malloc.o opt.o pager.o preferences.o
>> psignal.o
>> > rhome.o rt_complete.o rui.o run.o shext.o sys-win32.o system.o
>> dos_wglob.o
>> > dllversion.o ../main/libmain.a ../appl/libappl.a ../nmath/libnmath.a
>> > getline/gl.a ../extra/xdr/libxdr.a ../extra/intl/libintl.a
>> > ../extra/trio/libtrio.a ../ex...
2006 Nov 14
2
Building R from source
...deps
make -f Makefile.win libpcre.a
make[5]: `libpcre.a' is up to date.
make[4]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
gcc -shared -s -mwindows -o R.dll R.def console.o dataentry.o dynload.o edit.o editor.o embeddedR.o extra.o opt.o pager
.o preferences.o psignal.o rhome.o rui.o run.o shext.o sys-win32.o system.o e_pow.o malloc.o ../main/libmain.a ../appl/l
ibappl.a ../nmath/libnmath.a graphapp/ga.a getline/gl.a ../extra/xdr/libxdr.a ../extra/zlib/libz.a ../extra/pcre/libpcre
.a ../extra/bzip2/libbz2.a ../extra/intl/libintl.a ../extra/trio/libtrio.a dllvers...
2007 Jan 08
1
Cross-compilation of R and ld bug ?
...cedure stopped and returns :
************************************
i586-mingw32-windres --include-dir ../include -i dllversion.rc -o
dllversion.o
i586-mingw32-gcc -shared -s -mwindows -o R.dll R.def console.o
dataentry.o dynl oad.o edit.o editor.o embeddedR.o extra.o opt.o pager.o
preferences.o psignal.o rhome.o rui.o run.o shext.o sys-win32.o system.o
e_pow.o malloc.o ../main/libmai n.a ../appl/libappl.a
../nmath/libnmath.a graphapp/ga.a getline/gl.a ../extra/xd r/libxdr.a
../extra/zlib/libz.a ../extra/pcre/libpcre.a ../extra/bzip2/libbz2.a
../extra/intl/libintl.a ../extra/trio/libtrio.a dll...
2012 Mar 31
1
trouble compiling on Windows
...]: Nothing to be done for `all'.
installing zoneinfo
make[5]: `stamp' is up to date.
make[5]: `liblzma.a' is up to date.
x86_64-w64-mingw32-gcc -std=gnu99 -shared -s -mwindows -o R.dll R.def
console.o dataentry.o dynload.o edit.o editor.o embeddedR.o extra.o
opt.o pager.o preferences.o psignal.o rhome.o rt_complete.o rui.o
run.o shext.o sys-win32.o system.o dos_wglob.o malloc.o
../main/libmain.a ../appl/libappl.a ../nmath/libnmath.a getline/gl.a
../extra/xdr/libxdr.a ../extra/pcre/libpcre.a ../extra/bzip2/libbz2.a
../extra/intl/libintl.a ../extra/trio/libtrio.a ../extra/tzone/libtz.a
../...
2006 Apr 24
1
undefined type 'struct tms' when compiling for MinGW
...for compiling R on windows as
closely as possible. Below is my configure statement, which seems to
work okay except that no browser or pdf viewer is found, and html docs
will not be compiled... I've tried enabling/disabling many different
options, and I also add to hack some files to include psignal.h and
run.h using absolute path references. At any rate, I will invariably
get the errors below with R-2.2.1 and R-rc (from R-latest.tar.gz
downloaded a few hours ago). It seems that it is looking for times.h
which doesn't exist in the MinGW setup - but should it even be building
anything fro...
2012 Aug 12
1
trouble compiling R-patched from source on Windows 64 bit
...s up to date.
make[4]: Nothing to be done for `all'.
make[5]: `stamp' is up to date.
make[5]: `liblzma.a' is up to date.
x86_64-w64-mingw32-gcc -std=gnu99 -shared -s -mwindows -o R.dll R.def console.o dataentry.o dynload.o edit.o editor.o embeddedR.o extra.o opt.o pager.o preferences.o psignal.o rhome.o rt_complete.o rui.o run.o shext.o sys-win32.o system.o dos_wglob.o malloc.o ../main/libmain.a ../appl/libappl.a ../nmath/libnmath.a getline/gl.a ../extra/xdr/libxdr.a ../extra/pcre/libpcre.a ../extra/bzip2/libbz2.a ../extra/intl/libintl.a ../extra/trio/libtrio.a ../extra/tzone/libtz.a ../...