1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-10 17:05:12 +00:00

Merge pull request #203 from mkilgore/fix-manpage-flags

Add and fix options listed in manpage
This commit is contained in:
Matt Kilgore 2022-10-01 20:55:46 -04:00 committed by GitHub
commit 38bba69185
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ USAGE: qb64pe [switches] <file>
Source file to load
.TP
\fB\-v\fR
Verbose mode (detailed warnings)
Print version number and exit
.TP
\fB\-c\fR
Compile instead of edit
@ -29,6 +29,15 @@ Generate C code without compiling to executable
\fB\-o\fR <output file>
Write output executable to <output file>
.TP
\fB\-w\fR
Show warnings when compiling
.TP
\fB\-q\fR
Quiet mode (suppresses most output other than warnings and errors)
.TP
\fB\-m\fR
Suppress colors in output
.TP
\fB\-e\fR
Enables OPTION _EXPLICIT, making variable declaration
mandatory (per\-compilation; doesn't affect the
@ -37,6 +46,9 @@ source file or global settings)
\fB\-s[\fR:switch=true/false]
View/edit compiler settings
.TP
\fB\-f[\fR:setting=value]
Configure compiler settings for this run of the compiler
.TP
\fB\-l\fR:<line number>
Starts the IDE at the specified line number
.PP