search for: _unwind_getgr

Displaying 3 results from an estimated 3 matches for "_unwind_getgr".

2014 Oct 20
2
[LLVMdev] Lib C++ buildbot problem
Folks, I'm trying to set up a libc++ buildbot on ARM and I found an inconsistency which I'm not sure how to fix. I got a build error like this: libc++abi.so: undefined reference to `_Unwind_GetGR' Since I expected that the symbol would be provided by that library, I searched the CMake on libc++abi and found this: option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." OFF) ... if (LIBCXXABI_USE_LLVM_UNWINDER) add_subdirectory(src/Unwind) endif() But on the L...
2014 Oct 20
2
[LLVMdev] Lib C++ buildbot problem
...4:53 AM, Renato Golin wrote: > > Folks, > > > > I'm trying to set up a libc++ buildbot on ARM and I found an > > inconsistency which I'm not sure how to fix. > > > > I got a build error like this: > > > > libc++abi.so: undefined reference to `_Unwind_GetGR' > > > > Since I expected that the symbol would be provided by that library, I > > searched the CMake on libc++abi and found this: > > > > option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." > OFF) > > ... > > if (LIBCXXAB...
2020 Aug 15
5
Supporting libunwind on Windows 10 (32bit; 64bit) for MSVC and Clang
...ion(_Unwind_Exception *exception_object) { ^ C:/Users/clang/libunwind/include\unwind.h:177:13: note: previous declaration is here extern void _Unwind_DeleteException(_Unwind_Exception *exception_object); ^ C:/Users/clang/libunwind/src/UnwindLevel1.c:475:1: warning: redeclaration of '_Unwind_GetGR' should not add 'dllexport' attribute [-Wdll-attribute-on-redeclaration] _Unwind_GetGR(struct _Unwind_Context *context, int index) { ^ C:/Users/clang/libunwind/include\unwind.h:221:18: note: previous declaration is here extern uintptr_t _Unwind_GetGR(struct _Unwind_Context *context, int...