From: Geoff Norton Date: Fri, 20 Feb 2015 17:25:16 +0000 (-0800) Subject: Improve error messaging to be a bit more helpful on linux X-Git-Tag: accepted/tizen/base/20180629.140029~7082^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7033a9ced50c76e39a90280c97ce5107011ea3a7;p=platform%2Fupstream%2Fcoreclr.git Improve error messaging to be a bit more helpful on linux --- diff --git a/src/pal/src/exception/seh-unwind.cpp b/src/pal/src/exception/seh-unwind.cpp index da4bed6..7ea251f 100644 --- a/src/pal/src/exception/seh-unwind.cpp +++ b/src/pal/src/exception/seh-unwind.cpp @@ -199,8 +199,12 @@ BOOL PAL_VirtualUnwind(CONTEXT *context, KNONVOLATILE_CONTEXT_POINTERS *contextP return TRUE; } #else +#if __LINUX__ +#error Cannot find libuwind. Try installing libunwind8 and libunwind8-dev +#else #error don't know how to unwind on this platform #endif +#endif #if _DEBUG //----------------------------------------------------------------------