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

See openresty/luajit2@bd00094
This commit is contained in:
Thibault Charbonnier 2020-01-20 13:35:03 -08:00 committed by Thibault Charbonnier
parent d6ff771c82
commit 6d7249f1c4
2 changed files with 2092 additions and 2093 deletions

File diff suppressed because it is too large Load Diff

7
util/configure vendored
View File

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