- disabled VM JIT completely on unsuported platforms

This commit is contained in:
alexey.lysiuk 2019-02-04 11:14:52 +02:00
commit 2765159fc6
5 changed files with 60 additions and 35 deletions

View file

@ -922,6 +922,7 @@ void FFunctionBuildList::Build()
void FFunctionBuildList::DumpJit()
{
#ifdef HAVE_VM_JIT
FILE *dump = fopen("dumpjit.txt", "w");
if (dump == nullptr)
return;
@ -932,6 +933,7 @@ void FFunctionBuildList::DumpJit()
}
fclose(dump);
#endif // HAVE_VM_JIT
}