configure: updated '--without-luajit-gc64' to follow Mike Pall's commit which enables GC64 by default on x64 platforms.

See openresty/luajit2@bd00094
pull/576/head
Thibault Charbonnier 5 years ago committed by Thibault Charbonnier
parent d6ff771c82
commit 6d7249f1c4

File diff suppressed because it is too large Load Diff

7
util/configure vendored

@ -723,12 +723,11 @@ _END_
$luajit_xcflags .= " -DLUAJIT_ENABLE_LUA52COMPAT";
}
if (!$no_luajit_gc64
&& $Config{"archname"} =~ /\bx86_64\b/
if ($no_luajit_gc64
&& (!$user_luajit_xcflags
|| $user_luajit_xcflags !~ /-DLUAJIT_ENABLE_GC64\b/))
|| $user_luajit_xcflags !~ /-DLUAJIT_DISABLE_GC64/))
{
$luajit_xcflags .= " -DLUAJIT_ENABLE_GC64";
$luajit_xcflags .= " -DLUAJIT_DISABLE_GC64";
}
if (!$user_luajit_xcflags

Loading…
Cancel
Save