diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-04-29 10:57:19 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-04-29 10:57:19 +0200 |
| commit | 71c5447b8ad534f2507c0405a348d902e9374517 (patch) | |
| tree | a6f9bc80d6206d488b01ac0871cc18a1aa99efb6 /src/include/debug.h | |
| parent | a9a338ff428c0a30ffbc0cb0a26a96ed7e4aa9a0 (diff) | |
| download | box64-71c5447b8ad534f2507c0405a348d902e9374517.tar.gz box64-71c5447b8ad534f2507c0405a348d902e9374517.zip | |
Added a way to hide SSE 4.2, as it might slow down things using the string opcodes. Also, looks like some java program have issue with current implementation of pcmp[ei]str[im] somehow, so diabling automaticaly when detecting libjvm.so (for SlayTheSpire in particular)
Diffstat (limited to 'src/include/debug.h')
| -rw-r--r-- | src/include/debug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/debug.h b/src/include/debug.h index f7719991..8d75a5c5 100644 --- a/src/include/debug.h +++ b/src/include/debug.h @@ -92,6 +92,7 @@ extern int box64_dummy_crashhandler; extern int box64_sse_flushto0; extern int box64_x87_no80bits; extern int box64_sync_rounding; +extern int box64_sse42; extern int allow_missing_libs; extern int box64_mapclean; extern int box64_prefer_wrapped; |