Details
Details
- Reviewers
mclow.lists compnerd EricWF
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Unfortunately, __gcc_personality_v0 is not provided by libc as it should, but rather the compiler builtins. Using the LLVM unwinder does not guarantee that we are using clang_rt.builtins rather than libgcc. Changing this to check if we are using -rtlib=compiler-rt seems much more reasonable.
But, otherwise, this is a great idea.
Comment Actions
Looks like -rtlib is not mentioned in libcxxabi at all. I build stage 1 LLVM/Clang with compiler-rt, so dependency should be satisfied, but I don't know enough details, so will be good idea if somebody more knowledgeable will take over this improvement.