You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, `--heap-size-hint` would silently ignore many flavors of
"bad" input, parsing things like "3PB" as 3 bytes. This change makes it
significantly less permissive, erroring unless it can parse a number
(still relying on the C `sscanf` `%Lf` format specifier there) with an
optional unit (case-insensitive, either with or without the trailing
`b`). Also test it.
Copy file name to clipboardExpand all lines: doc/src/manual/command-line-interface.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -213,7 +213,7 @@ The following is a complete list of command-line switches available when launchi
213
213
|`--output-incremental={yes\|no*}`|Generate an incremental output file (rather than complete)|
214
214
|`--trace-compile={stderr,name}`|Print precompile statements for methods compiled during execution or save to a path|
215
215
|`--image-codegen`|Force generate code in imaging mode|
216
-
|`--heap-size-hint=<size>`|Forces garbage collection if memory usage is higher than that value. The memory hint might be specified in megabytes (e.g., 500M) or gigabytes (e.g., 1G)|
216
+
|`--heap-size-hint=<size>`|Forces garbage collection if memory usage is higher than the given value. The value may be specified as a number of bytes, optionally in units of KB, MB, GB, or TB, or as a percentage of physical memory with %.|
0 commit comments