Skip to content

Commit

Permalink
update manpage
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebolewski committed Oct 26, 2015
1 parent 835b679 commit df6105d
Showing 1 changed file with 48 additions and 29 deletions.
77 changes: 48 additions & 29 deletions doc/man/julia.1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ If a Julia source file is given as a \fIprogram\fP (optionally followed by

.\" This section was taken nearly verbatim from the output of `julia --help`
.SH "COMMAND-LINE OPTIONS"
.TP 25

.TP
-v, --version
Expand All @@ -65,13 +64,25 @@ Display version information
Print help message

.TP
-q, --quiet
Quiet startup without banner
-J, --sysimage <file>
Start up with the given system image file

.TP
-precompiled={yes|no}
Use precompiled code from system image if available

.TP
-H, --home <dir>
Set location of julia executable

.TP
--startup-file={yes|no}
Load ~/.juliarc.jl

.TP
--handle-signals={yes|no}
Enable or disable Julia's default signal handlers

.TP
-e, --eval <expr>
Evaluate <expr>
Expand All @@ -88,14 +99,6 @@ Evaluate <expr>, but don't disable interactive mode
-L, --load <file>
Load <file> immediately on all processors

.TP
-J, --sysimage <file>
Start up with the given system image file

.TP
-C, --cpu-target <target>
Limit usage of cpu features up to <target>

.TP
-p, --procs <n>
Run n local processes
Expand All @@ -108,6 +111,10 @@ Run processes on hosts listed in <file>
-i
Force isinteractive() to be true

.TP
-q, --quiet
Quiet startup without banner

.TP
--color={yes|no}
Enable or disable color text
Expand All @@ -117,45 +124,57 @@ Enable or disable color text
Load or save history

.TP
--startup-file={yes|no}
Load ~/.juliarc.jl

.TP
--compile={yes|no|all}
--compile={yes|no|all}
Enable or disable compiler, or request exhaustive compilation

.TP
--code-coverage={none|user|all}, --code-coverage
Count executions of source lines (omitting setting is equivalent to 'user')

.TP
--track-allocation={none|user|all}, --track-allocation
Count bytes allocated by each source line
-C, --cpu-target <target>
Limit usage of cpu features up to <target>

.TP
-O, --optimize
Run time-intensive code optimizations

.TP
--inline={yes|no}
Control whether inlining is permitted (overrides functions declared as @inline)

.TP
--check-bounds={yes|no}
Emit bounds checks always or never (ignoring declarations)

.TP
--dump-bitcode={yes|no}
Dump bitcode for the system image (used with --build)
--math-mode={ieee|user}
Always use IEEE semantics for math (ignoring declarations),
or adhere to declarations in source code

.TP
--depwarn={yes|no|error}
Enable or disable syntax and method deprecation warnings ('error' turns warnings into errors)

.TP
--inline={yes|no}
Control whether inlining is permitted (overrides functions declared as @inline)
--output-o name
Generate an object file (including system image data)

.TP
--math-mode={ieee|user}
Always use IEEE semantics for math (ignoring declarations),
or adhere to declarations in source code
--output-ji name
Generate a system image data file (.ji)

.TP
--output-bc name
Generate LLVM bitcode (.bc)

.TP
--output-incremental=no
Generate an incremental output file (rather than complete)

.TP
--code-coverage={none|user|all}, --code-coverage
Count executions of source lines (omitting setting is equivalent to 'user')

.TP
--track-allocation={none|user|all}, --track-allocation
Count bytes allocated by each source line

.SH FILES
.I ~/.juliarc.jl
Expand Down

0 comments on commit df6105d

Please sign in to comment.