search for: __deregister_frame_info_bases

Displaying 5 results from an estimated 5 matches for "__deregister_frame_info_bases".

2013 Jul 30
0
[LLVMdev] LLVM and Cygwin
..._frame is used to enable the debugger (gdb) to debug JIT'd code. It is a function provided by libgcc, to be more precise in libgcc_eh. Is it in your copy? $ nm libgcc_eh.a | grep register_fram 0000000000001960 T __deregister_frame 0000000000001950 T __deregister_frame_info 0000000000001830 T __deregister_frame_info_bases 0000000000001750 T __register_frame 0000000000001740 T __register_frame_info 00000000000016b0 T __register_frame_info_bases 0000000000001800 T __register_frame_info_table 0000000000001780 T __register_frame_info_table_bases 0000000000001810 T __register_frame_table Ciao, Duncan. > /cygdrive/c/...
2011 Jan 08
2
[LLVMdev] Build a static-linked executable using llvm
...$ clang++ test.cc `llvm-config --cxxflags --ldflags --libs` I works as usual. But if I use $ clang++ test.cc `llvm-config --cxxflags --ldflags --libs` -static It yells lots of undefined reference, like this /usr/lib/gcc/x86_64-linux-gnu/4.4.5/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `__deregister_frame_info_bases': (.text+0x1a16): undefined reference to `pthread_mutex_unlock' /usr/lib/gcc/x86_64-linux-gnu/4.4.5/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `__register_frame_info_bases': (.text+0x61): undefined reference to `pthread_mutex_unlock' /usr/lib/gcc/x86_64-linux-gnu/4.4.5/libgcc_...
2013 Jul 29
5
[LLVMdev] LLVM and Cygwin
I got the following error while compiling llvm and clang under cygwin. /cygdrive/c/Users/brianherman/Desktop/llvm/llvm-3.3.src/Release+Asserts/lib/libLLVMMCJIT.a(SectionMemoryManager.o):SectionMemoryManager.cpp:(.text+0x3b): undefined reference to `__register_frame'
2013 Jul 30
2
[LLVMdev] LLVM and Cygwin
...to debug JIT'd code. > It > is a function provided by libgcc, to be more precise in libgcc_eh. Is it > in > your copy? > > $ nm libgcc_eh.a | grep register_fram > 0000000000001960 T __deregister_frame > 0000000000001950 T __deregister_frame_info > 0000000000001830 T __deregister_frame_info_bases > 0000000000001750 T __register_frame > 0000000000001740 T __register_frame_info > 00000000000016b0 T __register_frame_info_bases > 0000000000001800 T __register_frame_info_table > 0000000000001780 T __register_frame_info_table_**bases > 0000000000001810 T __register_frame_table &...
2020 Aug 15
5
Supporting libunwind on Windows 10 (32bit; 64bit) for MSVC and Clang
...rame_info(const void *fde) { ^ C:/Users/clang/libunwind/include\unwind.h:375:14: note: previous declaration is here extern void *__deregister_frame_info(const void *fde) ^ C:/Users/clang/libunwind/src/UnwindLevel1-gcc-ext.c:316:25: warning: redeclaration of '__deregister_frame_info_bases' should not add 'dllexport' attribute [-Wdll-attribute-on-redeclaration] _LIBUNWIND_EXPORT void *__deregister_frame_info_bases(const void *fde) { ^ C:/Users/clang/libunwind/include\unwind.h:377:14: note: previous declaration is here extern void *__deregister_fram...