aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Pall <mike>2012-08-09 13:09:47 +0200
committerMike Pall <mike>2012-08-09 13:09:47 +0200
commite6fac91d01eff614314ce577ac75f80fadf17517 (patch)
tree5074296ab5e223c6c6e3cfea5dfb0f0acb90f742 /src
parent2717623e3acbcd4270303a0445ddd66326bc6d97 (diff)
downloadluajit-e6fac91d01eff614314ce577ac75f80fadf17517.tar.gz
luajit-e6fac91d01eff614314ce577ac75f80fadf17517.tar.bz2
luajit-e6fac91d01eff614314ce577ac75f80fadf17517.zip
Never compile DWARF unwinder on Windows.
Diffstat (limited to 'src')
-rw-r--r--src/lj_err.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_err.c b/src/lj_err.c
index 3ee8cf43..60d8fe12 100644
--- a/src/lj_err.c
+++ b/src/lj_err.c
@@ -185,7 +185,7 @@ static void *err_unwind(lua_State *L, void *stopcf, int errcode)
185 185
186/* -- External frame unwinding -------------------------------------------- */ 186/* -- External frame unwinding -------------------------------------------- */
187 187
188#if defined(__GNUC__) && !LJ_NO_UNWIND 188#if defined(__GNUC__) && !LJ_NO_UNWIND && !LJ_TARGET_WINDOWS
189 189
190/* 190/*
191** We have to use our own definitions instead of the mandatory (!) unwind.h, 191** We have to use our own definitions instead of the mandatory (!) unwind.h,