diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2023-10-25 20:14:11 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-25 14:14:11 +0200 |
| commit | 87bf751b115267d7c388c849c43fca6d3f0d0881 (patch) | |
| tree | edc6f3976538daf8dd1d9a49694d4bda19ef591d /src/tools | |
| parent | 12c40a5b804143cee0d538c4de4b526522bcfcd2 (diff) | |
| download | box64-87bf751b115267d7c388c849c43fca6d3f0d0881.tar.gz box64-87bf751b115267d7c388c849c43fca6d3f0d0881.zip | |
[INTERP] Fix fpu_round (#1030)
* [INTERP] Fix fpu_round * Should be working this time * Handling wrappedlibm * Format * Fix loongarch * Make it optional * Fix android build
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/rcfile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/rcfile.c b/src/tools/rcfile.c index cd6c70a7..6dbc6204 100644 --- a/src/tools/rcfile.c +++ b/src/tools/rcfile.c @@ -89,6 +89,7 @@ ENTRYBOOL(BOX64_X11GLX, box64_x11glx) \ ENTRYDSTRING(BOX64_LIBGL, box64_libGL) \ ENTRYBOOL(BOX64_SSE_FLUSHTO0, box64_sse_flushto0) \ ENTRYBOOL(BOX64_X87_NO80BITS, box64_x87_no80bits) \ +ENTRYBOOL(BOX64_SYNC_ROUNDING, box64_sync_rounding) \ ENTRYSTRING_(BOX64_EMULATED_LIBS, emulated_libs) \ ENTRYBOOL(BOX64_ALLOWMISSINGLIBS, allow_missing_libs) \ ENTRYBOOL(BOX64_PREFER_WRAPPED, box64_prefer_wrapped) \ @@ -593,4 +594,4 @@ void ApplyParams(const char* name) box64_log = 2; box64_dump = 1; } -} \ No newline at end of file +} |