search for: _exception_pointers

Displaying 4 results from an estimated 4 matches for "_exception_pointers".

Did you mean: exception_pointers
2009 Oct 01
2
[LLVMdev] llvm build errors on windows/mingw32
Hi all, When I try to build llvm on windows/mingw32, I get the following error: In file included from c:/work/mingw/src/llvm/lib/System/Signals.cpp:33: c:/work/mingw/src/llvm/lib/System/Win32/Signals.inc: In function 'LONG LLVMUnhandledExceptionFilter(_EXCEPTION_POINTERS*)': c:/work/mingw/src/llvm/lib/System/Win32/Signals.inc:275: error: exception handling disabled, use -fexceptions to enable make[1]: *** [/c/work/mingw/src/build.llvm/lib/System/Release/Signals.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make[1]: Leaving directory `/c/work/mingw/src...
2009 Oct 01
0
[LLVMdev] llvm build errors on windows/mingw32
....nl>: > Hi all, > > When I try to build llvm on windows/mingw32, I get the following error: > > In file included from c:/work/mingw/src/llvm/lib/System/Signals.cpp:33: > c:/work/mingw/src/llvm/lib/System/Win32/Signals.inc: In function 'LONG > LLVMUnhandledExceptionFilter(_EXCEPTION_POINTERS*)': > c:/work/mingw/src/llvm/lib/System/Win32/Signals.inc:275: error: exception > handling disabled, use -fexceptions to enable > make[1]: *** [/c/work/mingw/src/build.llvm/lib/System/Release/Signals.o] > Error 1 > make[1]: *** Waiting for unfinished jobs.... > make[1]: Leavin...
2014 Mar 21
1
PATCH for cpu.c
Explanation of changes in this patch: 1) 'CALLBACK' was changed to 'WINAPI' because the signature of an unhandled exception filter is LONG (WINAPI *unhandled_func)(struct _EXCEPTION_POINTERS); 2) The code if(info->ia32.fxsr || info->ia32.sse || info->ia32.sse2) { [...] } was replaced by if(info->ia32.sse) { [...] } else info->ia32.fxsr = info->ia32.sse = [...] = false; Reason: there's no point to test OS SSE support...
2009 Apr 17
15
[LLVMdev] mingw build problems
I'm trying to cross-compile LLVM with build=, host=target=. I'm using the following packages from Debian lenny: mingw32 4.2.1.dfsg-1 mingw32-binutils 2.18.50-20080109-1 mingw32-runtime 3.13-1 The first problem I hit was when I configured with CC, CXX, AR and RANLIB set to mingw cross-tools, but forgot to specify NM as well. This resulted in a load of warnings that scrolled off the