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:
parent
d6ff771c82
commit
6d7249f1c4
4178
t/000-sanity.t
4178
t/000-sanity.t
File diff suppressed because it is too large
Load Diff
|
@ -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…
Reference in New Issue