]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Never compile DWARF unwinder on Windows.
authorMike Pall <mike>
Thu, 9 Aug 2012 11:09:47 +0000 (13:09 +0200)
committerMike Pall <mike>
Thu, 9 Aug 2012 11:09:47 +0000 (13:09 +0200)
src/lj_err.c

index 3ee8cf4332424246a03921e0e25db40ebc15866f..60d8fe123b2568930e8d2d77bec6f13a758f8bfa 100644 (file)
@@ -185,7 +185,7 @@ static void *err_unwind(lua_State *L, void *stopcf, int errcode)
 
 /* -- External frame unwinding -------------------------------------------- */
 
-#if defined(__GNUC__) && !LJ_NO_UNWIND
+#if defined(__GNUC__) && !LJ_NO_UNWIND && !LJ_TARGET_WINDOWS
 
 /*
 ** We have to use our own definitions instead of the mandatory (!) unwind.h,