1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 07:40:24 +00:00

Merge branch 'alexmyczko-patch-1' into development (PR #79)

This commit is contained in:
Luke Ceddia 2020-01-02 14:32:46 +11:00
commit 8a7316953c
2 changed files with 46 additions and 2 deletions

44
qb64.1 Normal file
View file

@ -0,0 +1,44 @@
.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] <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
\fB\-x\fR
Compile instead of edit and output the result to the
console
.TP
\fB\-p\fR
Purge all pre\-compiled content first
.TP
\fB\-z\fR
Generate C code without compiling to executable
.TP
\fB\-o\fR <output file>
Write output executable to <output file>
.TP
\fB\-e\fR
Enables OPTION _EXPLICIT, making variable declaration
mandatory (per\-compilation; doesn't affect the
source file or global settings)
.TP
\fB\-s[\fR:switch=true/false]
View/edit compiler settings
.TP
\fB\-l\fR:<line number>
Starts the IDE at the specified line number
.PP
.SH "INTERNET"
.B https://qb64.org/

View file

@ -12945,7 +12945,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
@ -12955,7 +12955,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)"