From 7033a9ced50c76e39a90280c97ce5107011ea3a7 Mon Sep 17 00:00:00 2001 From: Geoff Norton Date: Fri, 20 Feb 2015 09:25:16 -0800 Subject: [PATCH] Improve error messaging to be a bit more helpful on linux --- src/pal/src/exception/seh-unwind.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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 //---------------------------------------------------------------------- -- 2.7.4