search for: jmpbuf

Displaying 6 results from an estimated 6 matches for "jmpbuf".

Did you mean: tmpbuf
2003 Mar 06
2
compiling R on sparc-solaris
Hello, I am trying to compile the R package on a sun. I get the error message rbitmap.c: In function 'my_png_error': rbitmap.c:73: structure has no member named 'jmpbuf' rbitmap.c: In function 'R_SaveAsPng': rbitmap.c:122: structure has no member named 'jmpbuf' make[4]:*** [rbitmap.lo] Error 1 Has anyone encountered this problem? Any solutions? Is there are compiled binary somewhere that I could use? Grateful for any help. Richard Richard...
2005 Nov 25
0
[LLVMdev] Re: setjmp/longjmp interoperable between llvm and gcc?
...s will be >fixed in the future, but is problematic for the time being. > >> Alternatives would be to force the llvm-built code to use the libgc >> setjmp/longjmp; force the gcc-built code to use a setjmp/longjmp >> borrowed from llvm; or perhaps make each setjmp tag the jmpbuf to >> show which flavor of longjmp is required. > >I depends on what sort of thing you want to do. Another option is to >compile everything with LLVM if possible. > >-Chris I'm having success with the third alternative, in which each setjmp tags the jmpbuf to show w...
2005 Nov 21
1
[LLVMdev] setjmp/longjmp interoperable between llvm and gcc?
...-built code will use llvm's setjmp/longjmp intrinsics. Are the two implementations safely interoperable? Alternatives would be to force the llvm-built code to use the libgc setjmp/longjmp; force the gcc-built code to use a setjmp/longjmp borrowed from llvm; or perhaps make each setjmp tag the jmpbuf to show which flavor of longjmp is required. Regards, ... kurt
2011 Sep 25
1
[LLVMdev] reusing FunctionPassManager with different Modules
Thanks. The reason I ask is because I'm looking at some code that does just that. A single FunctionPassManager is constructed with a dummy Module and createStandardFunctionPasses is called on it. The FunctionPassManager cached and run on Functions in other Modules. So far I haven't noticed any problems but I guess that is because the passes added by createStandardFunctionPasses don't
2005 Mar 07
0
gcc4 warnings
...com32/lib/libpng/pngwrite.c 2005-03-07 11:26:46.000000000 -0500 @@ -435,7 +435,7 @@ png_malloc_ptr malloc_fn, png_free_ptr free_fn) { #endif /* PNG_USER_MEM_SUPPORTED */ - png_structp png_ptr; + volatile png_structp png_ptr; #ifdef PNG_SETJMP_SUPPORTED #ifdef USE_FAR_KEYWORD jmp_buf jmpbuf; --- syslinux-3.07/com32/lib/libpng/pngread.c.gcc4 2005-01-08 00:58:20.000000000 -0500 +++ syslinux-3.07/com32/lib/libpng/pngread.c 2005-03-07 11:26:46.000000000 -0500 @@ -33,7 +33,7 @@ { #endif /* PNG_USER_MEM_SUPPORTED */ - png_structp png_ptr; + volatile png_structp png_ptr; #ifdef PN...
2018 Dec 14
2
LLVM Error: Unsupported library call operation
Hello, I am on the hook to instrument a piece of legacy LLVM IR code, and then we are planning to feed to the SeaHorn framework for some model checking tasks. After the instrumentation, I tried to use llc (version 3.9) to compile the IR code, and it works fine. However, when I try to use llc (version 3.8.1, the default llvm version of SeaHorn) to compile the IR code, it shows the following