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
Make all command-line options documented in all related files (#53826)
I checked and updated the three related files to make sure command-line
documentations are the same in all of them.
Previously mentioned in
#52645 (comment)
---------
Co-authored-by: Matt Bauman <[email protected]>
|`--help-hidden`|Print uncommon options not shown by `-h`|
169
169
|`--project[={<dir>\|@.}]`|Set `<dir>` as the active project/environment. The default `@.` option will search through parent directories until a `Project.toml` or `JuliaProject.toml` file is found.|
170
170
|`-J`, `--sysimage <file>`|Start up with the given system image file|
171
171
|`-H`, `--home <dir>`|Set location of `julia` executable|
172
172
|`--startup-file={yes*\|no}`|Load `JULIA_DEPOT_PATH/config/startup.jl`; if [`JULIA_DEPOT_PATH`](@ref JULIA_DEPOT_PATH) environment variable is unset, load `~/.julia/config/startup.jl`|
173
173
|`--handle-signals={yes*\|no}`|Enable or disable Julia's default signal handlers|
174
174
|`--sysimage-native-code={yes*\|no}`|Use native code from system image if available|
175
-
|`--compiled-modules={yes*\|no\|existing|strict}` |Enable or disable incremental precompilation of modules. The `existing` option allows use of existing compiled modules that were previously precompiled, but disallows creation of new precompile files. The `strict` option is similar, but will error if no precompile file is found. |
176
-
|`--pkgimages={yes*\|no|existing}`|Enable or disable usage of native code caching in the form of pkgimages. The `existing` option allows use of existing pkgimages but disallows creation of new ones|
175
+
|`--compiled-modules={yes*\|no\|existing\|strict}`|Enable or disable incremental precompilation of modules. The `existing` option allows use of existing compiled modules that were previously precompiled, but disallows creation of new precompile files. The `strict` option is similar, but will error if no precompile file is found. |
176
+
|`--pkgimages={yes*\|no\|existing}`|Enable or disable usage of native code caching in the form of pkgimages. The `existing` option allows use of existing pkgimages but disallows creation of new ones|
177
177
|`-e`, `--eval <expr>`|Evaluate `<expr>`|
178
178
|`-E`, `--print <expr>`|Evaluate `<expr>` and display the result|
179
+
|`-m`, `--module <Package> [args]`|Run entry point of `Package` (`@main` function) with `args'|
179
180
|`-L`, `--load <file>`|Load `<file>` immediately on all processors|
180
-
|`-t`, `--threads {N\|auto}`|Enable N threads; `auto` tries to infer a useful default number of threads to use but the exact behavior might change in the future. Currently, `auto` uses the number of CPUs assigned to this julia process based on the OS-specific affinity assignment interface, if supported (Linux and Windows). If this is not supported (macOS) or process affinity is not configured, it uses the number of CPU threads.|
181
+
|`-t`, `--threads {auto\|N[,auto\|M]}`|Enable N[+M] threads; N threads are assigned to the `default` threadpool, and if M is specified, M threads are assigned to the `interactive` threadpool; `auto` tries to infer a useful default number of threads to use but the exact behavior might change in the future. Currently sets N to the number of CPUs assigned to this Julia process based on the OS-specific affinity assignment interface if supported (Linux and Windows) or to the number of CPU threads if not supported (MacOS) or if process affinity is not configured, and sets M to 1.|
181
182
|`--gcthreads=N[,M]`|Use N threads for the mark phase of GC and M (0 or 1) threads for the concurrent sweeping phase of GC. N is set to half of the number of compute threads and M is set to 0 if unspecified.|
182
183
|`-p`, `--procs {N\|auto}`|Integer value N launches N additional local worker processes; `auto` launches as many workers as the number of local CPU threads (logical cores)|
183
184
|`--machine-file <file>`|Run processes on hosts listed in `<file>`|
184
-
|`-i`|Interactive mode; REPL runs and `isinteractive()` is true|
185
+
|`-i`, `--interactive`|Interactive mode; REPL runs and `isinteractive()` is true|
185
186
|`-q`, `--quiet`|Quiet startup: no banner, suppress REPL warnings|
186
-
|`--banner={yes\|no\|auto*}`|Enable or disable startup banner|
187
+
|`--banner={yes\|no\|short\|auto*}`|Enable or disable startup banner|
187
188
|`--color={yes\|no\|auto*}`|Enable or disable color text|
188
189
|`--history-file={yes*\|no}`|Load or save history|
189
190
|`--depwarn={yes\|no*\|error}`|Enable or disable syntax and method deprecation warnings (`error` turns warnings into errors)|
190
191
|`--warn-overwrite={yes\|no*}`|Enable or disable method overwrite warnings|
191
192
|`--warn-scope={yes*\|no}`|Enable or disable warning for ambiguous top-level scope|
192
193
|`-C`, `--cpu-target <target>`|Limit usage of CPU features up to `<target>`; set to `help` to see the available options|
193
-
|`-O`, `--optimize={0,1,2*,3}`|Set the optimization level (level is 3 if `-O` is used without a level) ($)|
194
-
|`--min-optlevel={0*,1,2,3}`|Set the lower bound on per-module optimization|
195
-
|`-g`, `--debug-info={0,1*,2}`|Set the level of debug info generation (level is 2 if `-g` is used without a level) ($)|
194
+
|`-O`, `--optimize={0\|1\|2*\|3}`|Set the optimization level (level is 3 if `-O` is used without a level) ($)|
195
+
|`--min-optlevel={0*\|1\|2\|3}`|Set the lower bound on per-module optimization|
196
+
|`-g`, `--debug-info={0\|1*\|2}`|Set the level of debug info generation (level is 2 if `-g` is used without a level) ($)|
196
197
|`--inline={yes\|no}`|Control whether inlining is permitted, including overriding `@inline` declarations|
197
198
|`--check-bounds={yes\|no\|auto*}`|Emit bounds checks always, never, or respect `@inbounds` declarations ($)|
198
199
|`--math-mode={ieee\|user*}`|Always follow `ieee` floating point semantics or respect `@fastmath` declarations|
200
+
|`--polly={yes*\|no}`|Enable or disable the polyhedral optimizer Polly (overrides @polly declaration)|
199
201
|`--code-coverage[={none*\|user\|all}]`|Count executions of source lines (omitting setting is equivalent to `user`)|
200
202
|`--code-coverage=@<path>`|Count executions but only in files that fall under the given file path/directory. The `@` prefix is required to select this option. A `@` with no path will track the current directory.|
201
203
|`--code-coverage=tracefile.info`|Append coverage information to the LCOV tracefile (filename supports format tokens).|
202
204
|`--track-allocation[={none*\|user\|all}]`|Count bytes allocated by each source line (omitting setting is equivalent to "user")|
203
205
|`--track-allocation=@<path>`|Count bytes but only in files that fall under the given file path/directory. The `@` prefix is required to select this option. A `@` with no path will track the current directory.|
204
206
|`--bug-report=KIND`|Launch a bug report session. It can be used to start a REPL, run a script, or evaluate expressions. It first tries to use BugReporting.jl installed in current environment and falls back to the latest compatible BugReporting.jl if not. For more information, see `--bug-report=help`.|
207
+
|`--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 %.|
205
208
|`--compile={yes*\|no\|all\|min}`|Enable or disable JIT compiler, or request exhaustive or minimal compilation|
206
209
|`--output-o <name>`|Generate an object file (including system image data)|
207
210
|`--output-ji <name>`|Generate a system image data file (.ji)|
@@ -211,9 +214,9 @@ The following is a complete list of command-line switches available when launchi
|`--output-asm <name>`|Generate an assembly file (.s)|
213
216
|`--output-incremental={yes\|no*}`|Generate an incremental output file (rather than complete)|
214
-
|`--trace-compile={stderr,name}`|Print precompile statements for methods compiled during execution or save to a path|
217
+
|`--trace-compile={stderr\|name}`|Print precompile statements for methods compiled during execution or save to a path|
215
218
|`--image-codegen`|Force generate code in imaging mode|
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 %.|
219
+
|`--permalloc-pkgimg={yes\|no*}`|Copy the data section of package images into memory|
0 commit comments