mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-30 07:41:22 +00:00
Disable JIT VM by default when compiling for DragonFly BSD
This commit is contained in:
parent
8578c11789
commit
61641bd45e
1 changed files with 4 additions and 0 deletions
|
@ -45,7 +45,11 @@
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
#ifdef HAVE_VM_JIT
|
#ifdef HAVE_VM_JIT
|
||||||
|
#ifdef __DragonFly__
|
||||||
|
CUSTOM_CVAR(Bool, vm_jit, false, CVAR_NOINITCALL)
|
||||||
|
#else
|
||||||
CUSTOM_CVAR(Bool, vm_jit, true, CVAR_NOINITCALL)
|
CUSTOM_CVAR(Bool, vm_jit, true, CVAR_NOINITCALL)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
Printf("You must restart " GAMENAME " for this change to take effect.\n");
|
Printf("You must restart " GAMENAME " for this change to take effect.\n");
|
||||||
Printf("This cvar is currently not saved. You must specify it on the command line.");
|
Printf("This cvar is currently not saved. You must specify it on the command line.");
|
||||||
|
|
Loading…
Reference in a new issue