1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-26 17:10:38 +00:00

Update text, add -v option

This commit is contained in:
Luke Ceddia 2020-01-02 14:32:31 +11:00
parent 9de8a11cee
commit 5fd1dc589c
2 changed files with 10 additions and 7 deletions

13
qb64.1
View file

@ -1,15 +1,18 @@
.TH qb64 "1" "November 2018" "QB64 IDE COMPILER" "User Commands"
.TH qb64 "1" "November 2018" "QB64 IDE AND COMPILER" "User Commands"
.SH NAME
qb64 \- manual page for QB64
.SH DESCRIPTION
QB64 COMPILER
.PP
USAGE: qb64 [switches] <inputs>
USAGE: qb64 [switches] <file>
.SS "OPTIONS:"
.TP
<file>
Source file to load
.TP
\fB\-v\fR
Verbose mode (detailed warnings)
.TP
\fB\-c\fR
Compile instead of edit
.TP
@ -23,8 +26,8 @@ Purge all pre\-compiled content first
\fB\-z\fR
Generate C code without compiling to executable
.TP
\fB\-o\fR <file>
Write output executable to <file>
\fB\-o\fR <output file>
Write output executable to <output file>
.TP
\fB\-e\fR
Enables OPTION _EXPLICIT, making variable declaration
@ -38,4 +41,4 @@ View/edit compiler settings
Starts the IDE at the specified line number
.PP
.SH "INTERNET"
.B http://qb64.org/
.B https://qb64.org/

View file

@ -12777,7 +12777,7 @@ FUNCTION ParseCMDLineArgs$ ()
_DEST _CONSOLE
PRINT "QB64 COMPILER V" + Version$
PRINT
PRINT "USAGE: qb64 [switches] <inputs>"
PRINT "USAGE: qb64 [switches] <file>"
PRINT
PRINT "OPTIONS:"
PRINT " <file> Source file to load" ' '80 columns
@ -12787,7 +12787,7 @@ FUNCTION ParseCMDLineArgs$ ()
PRINT " console"
PRINT " -p Purge all pre-compiled content first"
PRINT " -z Generate C code without compiling to executable"
PRINT " -o <file> Write output executable to <file>"
PRINT " -o <output file> Write output executable to <output file>"
PRINT " -e Enables OPTION _EXPLICIT, making variable declaration"
PRINT " mandatory (per-compilation; doesn't affect the"
PRINT " source file or global settings)"