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 /docs | |
| 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 'docs')
| -rw-r--r-- | docs/USAGE.md | 5 | ||||
| -rw-r--r-- | docs/box64.pod | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index 30a633fc..c344e4e1 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -231,6 +231,11 @@ Handling of x87 80bits long double * 0 : Try to handle 80bits long double as precise as possible (Default) * 1 : Handle them as double +#### BOX64_SYNC_ROUNDING * +Box64 will sync rounding mode with fesetround/fegetround. +* 0 : Disable rounding mode syncing. (Default.) +* 1 : Enable rounding mode syncing. + #### BOX64_LIBCEF * Detect libcef and apply malloc_hack settings * 0 : Don't detect libcef diff --git a/docs/box64.pod b/docs/box64.pod index b5c89f58..e8a2cf30 100644 --- a/docs/box64.pod +++ b/docs/box64.pod @@ -371,6 +371,13 @@ Handling of x87 80bits long double * 0 : Try to handle 80bits long double as precise as possible (Default) * 1 : Handle them as double +=item B<BOX64_SYNC_ROUNDING>=I<0|1> + +Box64 will sync rounding mode with fesetround/fegetround. + + * 0 : Disable rounding mode syncing. (Default.) + * 1 : Enable rounding mode syncing. + =item B<BOX64_LIBCEF>=I<0|1> Detect libcef and apply malloc_hack settings |