Browse Source

Never compile DWARF unwinder on Windows.

Mike Pall 13 years ago
parent
commit
e6fac91d01
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lj_err.c

+ 1 - 1
src/lj_err.c

@@ -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,