<div dir="ltr">Unfortunately I'm not too sure.  Neither clang nor linux are my primary development environments, so you probably need someone else to help you with this.<div><br></div><div>I've added someone to the thread though who is probably more familiar with this than I am, or who can at least refer you to the right person.</div><div><br></div><div>That said, If I had to take a wild guess, it looks like the errors you're getting indicate that something is wrong with the way you're linking against the C++ standard library.  Maybe you're pointing to a different version of the standard library than what you built LLVM against?<br><div><div><br><div class="gmail_quote"><div dir="ltr">On Tue, Jul 28, 2015 at 9:02 AM Schlottke-Lakemper, Michael <<a href="mailto:m.schlottke-lakemper@aia.rwth-aachen.de">m.schlottke-lakemper@aia.rwth-aachen.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">



<div style="word-wrap:break-word">
Hi Zachary,
<div><br>
</div>
<div>I tried to compile the following MWE</div>
<div><br>
</div>
<div>
<div>#include "llvm/Support/Signals.h"</div>
<div>#define __STDC_LIMIT_MACROS</div>
<div>#define __STDC_CONSTANT_MACROS</div>
<div>#include "llvm/Support/raw_ostream.h"</div>
<div><br>
</div>
<div>int main() {</div>
<div>  llvm::sys::PrintStackTrace(llvm::errs());</div>
<div>}</div>
<div><br>
</div>
<div>using the following command:</div>
<div><br>
</div>
<div>clang++ -std=c++11 -stdlib=libc++ -I/pds/opt/llvm/include mwe.cpp -o main -lc++ -lc++abi /pds/opt/llvm/lib/libLLVMSupport.a</div>
<div><br>
</div>
<div>This throws an error about missing the pthread library, so I add “-lpthread” to the end of the above line. However, this results in many, may errors like this:</div>
<div><br>
</div>
<div>
<div>/pds/opt/llvm/lib/libLLVMSupport.a(Debug.cpp.o): In function `llvm::isCurrentDebugType(char const*)':</div>
<div>/pds/opt/install/llvm/llvm-20150720-r242680-src/lib/Support/Debug.cpp:(.text._ZN4llvm18isCurrentDebugTypeEPKc+0xd7): undefined reference to `std::string::compare(char const*) const'</div>
</div>
<div>
<div>/pds/opt/llvm/lib/libLLVMSupport.a(Triple.cpp.o): In function `llvm::Triple::getLittleEndianArchVariant() const':</div>
<div>/pds/opt/install/llvm/llvm-20150720-r242680-src/lib/Support/Triple.cpp:(.text._ZNK4llvm6Triple26getLittleEndianArchVariantEv+0xb): undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(std::string
 const&)’</div>
</div>
<div>…</div>
<div><br>
</div>
<div>Any idea what I’m doing wrong?</div>
<div><br>
</div>
<div>Regards,</div>
<div><br>
</div>
<div>Michael</div></div></div><div style="word-wrap:break-word"><div>
<div>
<blockquote type="cite">
<div>On 28 Jul 2015, at 08:24 , Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:</div>
<br>
<div>
<div dir="ltr">#include "llvm/Support/Process.h"  // I think it's in process.h, going from memory here.
<div><br>
</div>
<div>void foo()</div>
<div>{</div>
<div>  llvm::sys::printStackTrace(llvm::outs);  // print to stdout</div>
<div><span style="line-height:1.5;font-size:13.1999998092651px">}</span><br>
</div>
<div><span style="line-height:1.5;font-size:13.1999998092651px"><br>
</span></div>
<div><span style="line-height:1.5;font-size:13.1999998092651px">If you want to write it to a std::string instead you can use an llvm::raw_string_ostream.</span></div>
<div><span style="line-height:1.5;font-size:13.1999998092651px"><br>
</span></div>
<div><span style="line-height:1.5;font-size:13.1999998092651px">If you need more help I can do so tomorrow or Wednesday when I'm back in the office.  The above should work across multiple platforms though (Windows, Mac, Linux) and be fully
 symbolized (if your program is built with debug information)</span></div>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr">On Mon, Jul 27, 2015 at 11:14 PM Schlottke-Lakemper, Michael <<a href="mailto:m.schlottke-lakemper@aia.rwth-aachen.de" target="_blank">m.schlottke-lakemper@aia.rwth-aachen.de</a>> wrote:<br>
</div>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
That would work for me too - I just did not know that there is such a capability in LLVM itself. I believe I found the printStackTrace method to be in libLLVMSupport.a. Would you happen to know what I have to do (or where to find more help) to make use of it?<br>
<br>
Michael<br>
<br>
PS: Maybe this is getting too OT; if yes, please let me know.<br>
________________________________________<br>
From: Zachary Turner [<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>]<br>
Sent: Tuesday, July 28, 2015 7:13 AM<br>
To: Schlottke-Lakemper, Michael; <a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">
lldb-dev@cs.uiuc.edu</a><br>
Subject: Re: [lldb-dev] Use lldb.so to create stack trace<br>
<br>
Instead of linking lldb.so, which is basically an entire debugger, maybe you could just link llvm?  I don't remember which library has the stack trace function in llvm, but the function I believe is called llvm::sys::printStackTrace().  This will give you a
 much smaller overhead than bringing in all of lldb unnecessarily.<br>
<br>
On Mon, Jul 27, 2015 at 10:12 PM Schlottke-Lakemper, Michael <<a href="mailto:m.schlottke-lakemper@aia.rwth-aachen.de" target="_blank">m.schlottke-lakemper@aia.rwth-aachen.de</a><mailto:<a href="mailto:m.schlottke-lakemper@aia.rwth-aachen.de" target="_blank">m.schlottke-lakemper@aia.rwth-aachen.de</a>>>
 wrote:<br>
Hi folks,<br>
<br>
We are looking for a way to use lldb.so to print out a stack trace programmatically. In our scientific simulation tool (written in C++) ,  we use a custom terminate function where we are already able to print stack traces in case of an abnormal abort, which
 uses some gcc-specific magic.<br>
<br>
My idea is to link our tool to lldb.so when compiling for debugging and to use the library to print a stack trace programmatically, including demangled names and correct line numbers. However, I don't really know how to start thus I am wondering<br>
<br>
- has someone here done or seen something like this before?<br>
- is there a tutorial for linking to lldb.so and making use of it through C++?<br>
- would this also work when compiling with other compilers than clang?<br>
<br>
Any help or pointers to relevant projects/documentation etc is greatly appreciated!<br>
<br>
Regards,<br>
<br>
Michael<br>
<br>
--<br>
Michael Schlottke-Lakemper<br>
<br>
SimLab Highly Scalable Fluids & Solids Engineering<br>
Jülich Aachen Research Alliance (JARA-HPC)<br>
RWTH Aachen University<br>
<br>
Wüllnerstraße 5a<br>
52062 Aachen<br>
Germany<br>
<br>
Phone: +49 (241) 80 95188<br>
Fax: +49 (241) 80 92257<br>
Mail: <a href="mailto:m.schlottke-lakemper@aia.rwth-aachen.de" target="_blank">
m.schlottke-lakemper@aia.rwth-aachen.de</a><mailto:<a href="mailto:m.schlottke-lakemper@aia.rwth-aachen.de" target="_blank">m.schlottke-lakemper@aia.rwth-aachen.de</a>><br>
Web: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__www.jara.org_jara-2Dhpc&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=DDUMf06MYELAe1Nlv7KChiwJLLHbYha4jtK_AOiWqwQ&m=PmlvwC5PVZObEmA2A5X6rQ9_2YmmujvqBdvpW_d2rrY&s=hRQ18Ldd9iNGeWm4IWIaIVDY4VmQjbzdFzOfehc8304&e=" rel="noreferrer" target="_blank">
http://www.jara.org/jara-hpc</a><br>
<br>
_______________________________________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a><mailto:<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a>><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev</a><br>
</blockquote>
</div>
</div>
</blockquote>
</div>
<br>
</div></div></blockquote></div></div></div></div></div>