1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-06-29 05:50:41 +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 .SH NAME
qb64 \- manual page for QB64 qb64 \- manual page for QB64
.SH DESCRIPTION .SH DESCRIPTION
QB64 COMPILER QB64 COMPILER
.PP .PP
USAGE: qb64 [switches] <inputs> USAGE: qb64 [switches] <file>
.SS "OPTIONS:" .SS "OPTIONS:"
.TP .TP
<file> <file>
Source file to load Source file to load
.TP .TP
\fB\-v\fR
Verbose mode (detailed warnings)
.TP
\fB\-c\fR \fB\-c\fR
Compile instead of edit Compile instead of edit
.TP .TP
@ -23,8 +26,8 @@ Purge all pre\-compiled content first
\fB\-z\fR \fB\-z\fR
Generate C code without compiling to executable Generate C code without compiling to executable
.TP .TP
\fB\-o\fR <file> \fB\-o\fR <output file>
Write output executable to <file> Write output executable to <output file>
.TP .TP
\fB\-e\fR \fB\-e\fR
Enables OPTION _EXPLICIT, making variable declaration Enables OPTION _EXPLICIT, making variable declaration
@ -38,4 +41,4 @@ View/edit compiler settings
Starts the IDE at the specified line number Starts the IDE at the specified line number
.PP .PP
.SH "INTERNET" .SH "INTERNET"
.B http://qb64.org/ .B https://qb64.org/

View file

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