52 |
|
{"nosound", TYPE_BOOLEAN, false, "don't enable sound output"}, |
53 |
|
{"nogui", TYPE_BOOLEAN, false, "disable GUI"}, |
54 |
|
{"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"}, |
55 |
+ |
{"jit", TYPE_BOOLEAN, false, "enable JIT compiler"}, |
56 |
|
{NULL, TYPE_END, false, NULL} // End of list |
57 |
|
}; |
58 |
|
|
73 |
|
PrefsAddBool("nosound", false); |
74 |
|
PrefsAddBool("nogui", false); |
75 |
|
PrefsAddBool("ignoresegv", true); |
76 |
+ |
|
77 |
+ |
#if USE_JIT |
78 |
+ |
// JIT compiler specific options |
79 |
+ |
PrefsAddBool("jit", true); |
80 |
+ |
#else |
81 |
+ |
PrefsAddBool("jit", false); |
82 |
+ |
#endif |
83 |
|
} |