- disabled VM JIT completely on unsuported platforms
This commit is contained in:
parent
af9636b7c3
commit
2765159fc6
5 changed files with 60 additions and 35 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue