Skip to content

Commit 55a29fd

Browse files
authored
Merge pull request #159 from jayrm/fbdoc
fbdoc and tools update 2019-07-13
2 parents dde5e66 + db0b834 commit 55a29fd

File tree

73 files changed

+713
-163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+713
-163
lines changed

doc/fbchkdoc/cmd_opts.bas

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ sub cmd_opts_init( byval opts_flags as const CMD_OPTS_ENABLE_FLAGS )
180180
cmd_opt.manual = false '' -manual_dir given on command line
181181
cmd_opt.manual_dir = "" '' value of '-manual_dir DIR' given on command line
182182

183-
cmd_opt.db_user_is_set = false
184-
185183
'' resolved options
186184

187185
app_opt.wiki_url = "" '' export: resolved wiki url

doc/fbchkdoc/putpage.bas

Lines changed: 38 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -138,53 +138,54 @@ if( app_opt.pageCount > 0 ) then
138138
print "Unable to load"
139139
else
140140
print "OK"
141-
if( wikicon->LoadPage( sPage, sBodyOld ) <> FALSE ) then
142-
if( wikicon->GetPageID() > 0 ) then
143-
if( wikicon->Login( app_opt.wiki_username, app_opt.wiki_password ) ) = FALSE then
144-
print "Unable to login"
141+
142+
'' wikicon->LoadPage() may return FALSE if the page does not
143+
'' yet exist. Test the page ID instead to determine if it
144+
'' is a new page
145+
wikicon->LoadPage( sPage, sBodyOld )
146+
if( wikicon->GetPageID() > 0 ) then
147+
if( wikicon->Login( app_opt.wiki_username, app_opt.wiki_password ) ) = FALSE then
148+
print "Unable to login"
149+
else
150+
if( iComment > 0 ) then
151+
if( iComment = 1 or sNoteDef = "" ) then
152+
print "Enter note for '" + sPage + "' : ";
153+
Line input sNote
154+
if trim(sNote) = "" then sNote = "Auto-Update"
155+
sNoteDef = sNote
156+
else
157+
sNote = sNoteDef
158+
end if
145159
else
146-
if( iComment > 0 ) then
147-
if( iComment = 1 or sNoteDef = "" ) then
148-
print "Enter note for '" + sPage + "' : ";
149-
Line input sNote
150-
if trim(sNote) = "" then sNote = "Auto-Update"
151-
sNoteDef = sNote
152-
else
153-
sNote = sNoteDef
154-
end if
160+
if( sComment > "" ) then
161+
sNote = sComment
162+
elseif( sNoteDef > "" ) then
163+
sNote = sNoteDef
155164
else
156-
if( sComment > "" ) then
157-
sNote = sComment
158-
elseif( sNoteDef > "" ) then
159-
sNote = sNoteDef
160-
else
161-
sNote = ""
162-
end if
165+
sNote = ""
163166
end if
167+
end if
164168

165-
print "Storing '" + sPage + "' [" + sNote + "] : ";
169+
print "Storing '" + sPage + "' [" + sNote + "] : ";
166170

167-
if( wikicon->StorePage( sBody, sNote ) = FALSE ) then
168-
print "FAILED"
169-
else
170-
print "OK"
171-
end if
171+
if( wikicon->StorePage( sBody, sNote ) = FALSE ) then
172+
print "FAILED"
173+
else
174+
print "OK"
172175
end if
176+
end if
177+
else
178+
print "Unable to get existing page ID - will try to store as a new page .."
179+
if( wikicon->Login( app_opt.wiki_username, app_opt.wiki_password ) ) = FALSE then
180+
print "Unable to login"
173181
else
174-
print "Unable to get existing page ID - will try to store as a new page .."
175-
if( wikicon->Login( app_opt.wiki_username, app_opt.wiki_password ) ) = FALSE then
176-
print "Unable to login"
182+
print "Storing '" + sPage + "': ";
183+
if( wikicon->StoreNewPage( sBody, sPage ) = FALSE ) then
184+
print "FAILED"
177185
else
178-
print "Storing '" + sPage + "': ";
179-
if( wikicon->StoreNewPage( sBody, sPage ) = FALSE ) then
180-
print "FAILED"
181-
else
182-
print "OK"
183-
end if
186+
print "OK"
184187
end if
185188
end if
186-
else
187-
print "Unable to existing page"
188189
end if
189190
end if
190191
next

doc/manual/cache/CatPgCompOpt.wakka

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,22 @@ Command line compiler options for the fbc compiler:
2323
- Create a DLL, including the import library
2424
{{fbdoc item="keyword" value="CompilerOpte|-e"}}
2525
- Add error checking
26+
{{fbdoc item="keyword" value="CompilerOptearray|-earray"}}
27+
- Enable array bounds checking
28+
{{fbdoc item="keyword" value="CompilerOpteassert|-eassert"}}
29+
- Enable assert() and assertwarn() checking
30+
{{fbdoc item="keyword" value="CompilerOptedebug|-edebug"}}
31+
- Enable ##[[KeyPgDdfbdebug|__FB_DEBUG__]]##
32+
{{fbdoc item="keyword" value="CompilerOptedebuginfo|-edebuginfo"}}
33+
- Add debug information
34+
{{fbdoc item="keyword" value="CompilerOptelocation|-elocation"}}
35+
- Enable full error location reporting
36+
{{fbdoc item="keyword" value="CompilerOptenullptr|-enullptr"}}
37+
- Enable null-pointer checking
2638
{{fbdoc item="keyword" value="CompilerOptex|-ex"}}
2739
- Add error checking with RESUME support
2840
{{fbdoc item="keyword" value="CompilerOptexx|-exx"}}
29-
- Same as -ex, plus array bounds and non-null-pointer checking
41+
- Same as -ex, plus array bounds, null-pointer, and error location reporting
3042
{{fbdoc item="keyword" value="CompilerOptexport|-export"}}
3143
- Export symbols for dynamic linkage
3244
{{fbdoc item="keyword" value="CompilerOptforcelang|-forcelang <name>"}}
@@ -36,7 +48,7 @@ Command line compiler options for the fbc compiler:
3648
{{fbdoc item="keyword" value="CompilerOptfpu|-fpu < type >"}}
3749
- Set the floating point arithmetics unit (default: FPU)
3850
{{fbdoc item="keyword" value="CompilerOptg|-g"}}
39-
- Add debug info
51+
- Add debug info, enable""##__FB_DEBUG__##"", and enable asserts
4052
{{fbdoc item="keyword" value="CompilerOptgen|-gen < backend >"}}
4153
- Sets the compiler backend (default is 'gas')
4254
{{fbdoc item="keyword" value="CompilerOpti|-i < name >"}}

doc/manual/cache/CatPgConsole.wakka

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Procedures that work with the console.
3232
Gets the character or color attribute at a given location.
3333
<<>>{{anchor name="WRITING"}}{{fbdoc item="section" value="Writing Text to the Console"}}
3434
=={{fbdoc item="keyword" value="KeyPgPrint|PRINT"}}==
35-
=={{fbdoc item="keyword" value="KeyPgPrint|?"}}==
35+
=={{fbdoc item="keyword" value="KeyPgPrint|? (Shortcut for 'PRINT')"}}==
3636
Writes text to the console.
3737
=={{fbdoc item="keyword" value="KeyPgPrintusing|PRINT USING"}}==
38-
=={{fbdoc item="keyword" value="KeyPgPrintusing|? USING"}}==
38+
=={{fbdoc item="keyword" value="KeyPgPrintusing|? USING (Shortcut for 'PRINT USING')"}}==
3939
Writes formatted text to the console.
4040
=={{fbdoc item="keyword" value="KeyPgWrite|WRITE"}}==
4141
Writes a list of items to the console.

doc/manual/cache/CatPgFile.wakka

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Statements and procedures for working with files and devices.
7070
=={{fbdoc item="keyword" value="KeyPgLineinputPp|LINE INPUT #"}}==
7171
Reads a line of text from a file or device.
7272
=={{fbdoc item="keyword" value="KeyPgPrintPp|PRINT #"}}==
73-
=={{fbdoc item="keyword" value="KeyPgPrintPp|? #"}}==
73+
=={{fbdoc item="keyword" value="KeyPgPrintPp|? # (Shortcut for 'PRINT #')"}}==
7474
Writes text data to a file or device.
7575
=={{fbdoc item="keyword" value="KeyPgPutfileio|PUT #"}}==
7676
Writes arbitrary data to a file or device.

doc/manual/cache/CatPgFullIndex.wakka

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{{fbdoc item="title" value="Alphabetical Keywords List"}}----
22
Alphabetical listing of keywords, macros and procedures.
33

4-
[[CatPgOpIndex|Operators]] ##{{anchor name="dot|."}} {{anchor name="underscore|_"}} {{anchor name="hash|#"}} {{anchor name="dollar|$"}} {{anchor name="a|A"}} {{anchor name="b|B"}} {{anchor name="c|C"}} {{anchor name="d|D"}} {{anchor name="e|E"}} {{anchor name="f|F"}} {{anchor name="g|G"}} {{anchor name="h|H"}} {{anchor name="i|I"}} {{anchor name="k|K"}} {{anchor name="l|L"}} {{anchor name="m|M"}} {{anchor name="n|N"}} {{anchor name="o|O"}} {{anchor name="p|P"}} {{anchor name="r|R"}} {{anchor name="s|S"}} {{anchor name="t|T"}} {{anchor name="u|U"}} {{anchor name="v|V"}} {{anchor name="w|W"}} {{anchor name="x|X"}} {{anchor name="y|Y"}} {{anchor name="z|Z"}}##
4+
##{{anchor name="op|Operators"}} {{anchor name="dot|."}} {{anchor name="underscore|_"}} {{anchor name="hash|#"}} {{anchor name="dollar|$"}} {{anchor name="query|?"}} {{anchor name="a|A"}} {{anchor name="b|B"}} {{anchor name="c|C"}} {{anchor name="d|D"}} {{anchor name="e|E"}} {{anchor name="f|F"}} {{anchor name="g|G"}} {{anchor name="h|H"}} {{anchor name="i|I"}} {{anchor name="k|K"}} {{anchor name="l|L"}} {{anchor name="m|M"}} {{anchor name="n|N"}} {{anchor name="o|O"}} {{anchor name="p|P"}} {{anchor name="r|R"}} {{anchor name="s|S"}} {{anchor name="t|T"}} {{anchor name="u|U"}} {{anchor name="v|V"}} {{anchor name="w|W"}} {{anchor name="x|X"}} {{anchor name="y|Y"}} {{anchor name="z|Z"}}##
55

66
{{fbdoc item="back" value="DocToc|Table of Contents"}}
7-
<<{{fbdoc item="section" value="Operators"}}
7+
<<{{fbdoc item="section" value="Operators"}}{{anchor name="op"}}
88
- [[CatPgOpIndex|See Operator List]]
99

1010
{{fbdoc item="section" value="."}}{{anchor name="dot"}}
@@ -94,6 +94,11 @@ Alphabetical listing of keywords, macros and procedures.
9494
- {{fbdoc item="keyword" value="KeyPgMetaLang|$LANG"}}
9595
- {{fbdoc item="keyword" value="KeyPgMetaStatic|$STATIC"}}
9696

97+
{{fbdoc item="section" value="?"}}{{anchor name="query"}}
98+
- {{fbdoc item="keyword" value="KeyPgPrint|? (Shortcut for 'PRINT')"}}
99+
- {{fbdoc item="keyword" value="KeyPgPrintPp|? # (Shortcut for 'PRINT #')"}}
100+
- {{fbdoc item="keyword" value="KeyPgPrintusing|? USING (Shortcut for 'PRINT USING')"}}
101+
97102
{{fbdoc item="section" value="A"}}{{anchor name="a"}}
98103
- {{fbdoc item="keyword" value="KeyPgAbs|ABS"}}
99104
- {{fbdoc item="keyword" value="KeyPgAbstract|ABSTRACT (member)"}}
@@ -259,6 +264,8 @@ Alphabetical listing of keywords, macros and procedures.
259264
- {{fbdoc item="keyword" value="KeyPgExp|EXP"}}
260265
- {{fbdoc item="keyword" value="KeyPgExport|EXPORT"}}
261266
- {{fbdoc item="keyword" value="KeyPgExtends|EXTENDS"}}
267+
- {{fbdoc item="keyword" value="KeyPgExtendsWstring|EXTENDS WSTRING"}}
268+
- {{fbdoc item="keyword" value="KeyPgExtendsZstring|EXTENDS ZSTRING"}}
262269
- {{fbdoc item="keyword" value="KeyPgExtern|EXTERN"}}
263270
- {{fbdoc item="keyword" value="KeyPgExternBlock|EXTERN...END EXTERN"}}
264271

@@ -297,7 +304,7 @@ Alphabetical listing of keywords, macros and procedures.
297304
- {{fbdoc item="keyword" value="KeyPgHiword|HIWORD"}}
298305
- {{fbdoc item="keyword" value="KeyPgHour|HOUR"}}
299306

300-
{{fbdoc item="section" value="I"}}{{anchor name="i"}}
307+
<<>>{{fbdoc item="section" value="I"}}{{anchor name="i"}}
301308
- {{fbdoc item="keyword" value="KeyPgIfthen|IF...THEN"}}
302309
- {{fbdoc item="keyword" value="KeyPgIif|IIF"}}
303310
- {{fbdoc item="keyword" value="KeyPgImageConvertRow|IMAGECONVERTROW"}}
@@ -322,7 +329,7 @@ Alphabetical listing of keywords, macros and procedures.
322329
- {{fbdoc item="keyword" value="KeyPgIsDate|ISDATE"}}
323330
- {{fbdoc item="keyword" value="KeyPgIsredirected|ISREDIRECTED"}}
324331

325-
<<>>{{fbdoc item="section" value="K"}}{{anchor name="k"}}
332+
{{fbdoc item="section" value="K"}}{{anchor name="k"}}
326333
- {{fbdoc item="keyword" value="KeyPgKill|KILL"}}
327334

328335
{{fbdoc item="section" value="L"}}{{anchor name="l"}}
@@ -426,25 +433,22 @@ Alphabetical listing of keywords, macros and procedures.
426433
- {{fbdoc item="keyword" value="KeyPgPmap|PMAP"}}
427434
- {{fbdoc item="keyword" value="KeyPgPoint|POINT"}}
428435
- {{fbdoc item="keyword" value="KeyPgPointCoord|POINTCOORD"}}
429-
- {{fbdoc item="keyword" value="KeyPgPointer|POINTER"}}
436+
- {{fbdoc item="keyword" value="KeyPgPtr|POINTER"}}
430437
- {{fbdoc item="keyword" value="KeyPgPoke|POKE"}}
431438
- {{fbdoc item="keyword" value="KeyPgPos|POS"}}
432439
- {{fbdoc item="keyword" value="KeyPgPreserve|PRESERVE"}}
433440
- {{fbdoc item="keyword" value="KeyPgPreset|PRESET"}}
434441
- {{fbdoc item="keyword" value="KeyPgPrint|PRINT"}}
435-
- {{fbdoc item="keyword" value="KeyPgPrint|?"}}
436442
- {{fbdoc item="keyword" value="KeyPgPrintPp|PRINT #"}}
437-
- {{fbdoc item="keyword" value="KeyPgPrintPp|? #"}}
438443
- {{fbdoc item="keyword" value="KeyPgPrintusing|PRINT USING"}}
439-
- {{fbdoc item="keyword" value="KeyPgPrintusing|? USING"}}
440444
- {{fbdoc item="keyword" value="KeyPgPrivate|PRIVATE"}}
441445
- {{fbdoc item="keyword" value="KeyPgVisPrivate|PRIVATE: (Access Control)"}}
442446
- {{fbdoc item="keyword" value="KeyPgOpProcptr|PROCPTR"}}
443447
- {{fbdoc item="keyword" value="KeyPgProperty|PROPERTY"}}
444448
- {{fbdoc item="keyword" value="KeyPgVisProtected|PROTECTED: (Access Control)"}}
445449
- {{fbdoc item="keyword" value="KeyPgPset|PSET (Statement)"}}
446450
- {{fbdoc item="keyword" value="KeyPgPsetGfx|PSET (Graphics PUT)"}}
447-
- {{fbdoc item="keyword" value="KeyPgPtr|PTR"}}
451+
- {{fbdoc item="keyword" value="KeyPgPtr|PTR (Shortcut for 'POINTER')"}}
448452
- {{fbdoc item="keyword" value="KeyPgPublic|PUBLIC"}}
449453
- {{fbdoc item="keyword" value="KeyPgVisPublic|PUBLIC: (Access Control)"}}
450454
- {{fbdoc item="keyword" value="KeyPgPutgraphics|PUT (Graphics)"}}

doc/manual/cache/CatPgFunctIndex.wakka

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ List of ""FreeBASIC"" keywords sorted by the function they perform.
4242
- {{fbdoc item="keyword" value="KeyPgOptionstatic|OPTION STATIC"}}
4343

4444
{{fbdoc item="section" value="Console"}}
45+
- {{fbdoc item="keyword" value="KeyPgPrint|? (Shortcut for 'PRINT')"}}
46+
- {{fbdoc item="keyword" value="KeyPgPrintusing|? USING (Shortcut for 'PRINT USING')"}}
4547
- {{fbdoc item="keyword" value="KeyPgBeep|BEEP"}}
4648
- {{fbdoc item="keyword" value="KeyPgCls|CLS"}}
4749
- {{fbdoc item="keyword" value="KeyPgColor|COLOR"}}
@@ -53,9 +55,7 @@ List of ""FreeBASIC"" keywords sorted by the function they perform.
5355
- {{fbdoc item="keyword" value="KeyPgOpenScrn|OPEN SCRN"}}
5456
- {{fbdoc item="keyword" value="KeyPgPos|POS"}}
5557
- {{fbdoc item="keyword" value="KeyPgPrint|PRINT"}}
56-
- {{fbdoc item="keyword" value="KeyPgPrint|?"}}
5758
- {{fbdoc item="keyword" value="KeyPgPrintusing|PRINT USING"}}
58-
- {{fbdoc item="keyword" value="KeyPgPrintusing|? USING"}}
5959
- {{fbdoc item="keyword" value="KeyPgScreenCons|SCREEN (Console)"}}
6060
- {{fbdoc item="keyword" value="KeyPgSpc|SPC"}}
6161
- {{fbdoc item="keyword" value="KeyPgTab|TAB"}}
@@ -75,6 +75,8 @@ List of ""FreeBASIC"" keywords sorted by the function they perform.
7575
- {{fbdoc item="keyword" value="KeyPgDouble|DOUBLE"}}
7676
- {{fbdoc item="keyword" value="KeyPgEnum|ENUM"}}
7777
- {{fbdoc item="keyword" value="KeyPgExtends|EXTENDS"}}
78+
- {{fbdoc item="keyword" value="KeyPgExtendsWstring|EXTENDS WSTRING"}}
79+
- {{fbdoc item="keyword" value="KeyPgExtendsZstring|EXTENDS ZSTRING"}}
7880
- {{fbdoc item="keyword" value="KeyPgFunctionPtr|FUNCTION (Pointer)"}}
7981
- {{fbdoc item="keyword" value="KeyPgImplements|IMPLEMENTS"}}
8082
- {{fbdoc item="keyword" value="KeyPgInteger|INTEGER"}}
@@ -145,6 +147,7 @@ List of ""FreeBASIC"" keywords sorted by the function they perform.
145147
- {{fbdoc item="keyword" value="KeyPgResumenext|RESUME NEXT"}}
146148

147149
{{fbdoc item="section" value="Files"}}
150+
- {{fbdoc item="keyword" value="KeyPgPrintPp|? # (Shortcut for 'Print #')"}}
148151
- {{fbdoc item="keyword" value="KeyPgAccess|ACCESS"}}
149152
- {{fbdoc item="keyword" value="KeyPgAppend|APPEND"}}
150153
- {{fbdoc item="keyword" value="KeyPgBinary|BINARY"}}
@@ -164,7 +167,6 @@ List of ""FreeBASIC"" keywords sorted by the function they perform.
164167
- {{fbdoc item="keyword" value="KeyPgOpen|OPEN"}}
165168
- {{fbdoc item="keyword" value="KeyPgOutput|OUTPUT"}}
166169
- {{fbdoc item="keyword" value="KeyPgPrintPp|PRINT #"}}
167-
- {{fbdoc item="keyword" value="KeyPgPrintPp|? #"}}
168170
- {{fbdoc item="keyword" value="KeyPgPutfileio|PUT # (File I/O)"}}
169171
- {{fbdoc item="keyword" value="KeyPgRandom|RANDOM"}}
170172
- {{fbdoc item="keyword" value="KeyPgReadFile|READ (File Access)"}}
@@ -385,9 +387,9 @@ List of ""FreeBASIC"" keywords sorted by the function they perform.
385387
- {{fbdoc item="keyword" value="KeyPgWindowtitle|WINDOWTITLE"}}
386388

387389
{{fbdoc item="section" value="Pointers"}}
388-
- {{fbdoc item="keyword" value="KeyPgPointer|POINTER"}}
390+
- {{fbdoc item="keyword" value="KeyPgPtr|POINTER"}}
389391
- {{fbdoc item="keyword" value="KeyPgOpProcptr|PROCPTR"}}
390-
- {{fbdoc item="keyword" value="KeyPgPtr|PTR"}}
392+
- {{fbdoc item="keyword" value="KeyPgPtr|PTR (Shortcut for 'POINTER')"}}
391393
- {{fbdoc item="keyword" value="KeyPgSadd|SADD"}}
392394
- {{fbdoc item="keyword" value="KeyPgOpStrptr|STRPTR"}}
393395
- {{fbdoc item="keyword" value="KeyPgOpVarptr|VARPTR"}}

doc/manual/cache/CatPgStdDataTypes.wakka

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Built-in data types
4646
<<>>{{anchor name="MODIFIERS"}}{{fbdoc item="section" value="Data Type Modifiers"}}
4747
=={{fbdoc item="keyword" value="KeyPgConstQualifier|CONST"}}==
4848
Specifies a read only type.
49-
=={{fbdoc item="keyword" value="KeyPgPointer|POINTER"}} and {{fbdoc item="keyword" value="KeyPgPtr|PTR"}}==
49+
=={{fbdoc item="keyword" value="KeyPgPtr|POINTER"}} and {{fbdoc item="keyword" value="KeyPgPtr|PTR (Shortcut for 'POINTER')"}}==
5050
Modifies types to be pointer types.
5151
=={{fbdoc item="keyword" value="KeyPgUnsigned|UNSIGNED"}}==
5252
Specifies an unsigned integer type.

doc/manual/cache/CatPgUserDefTypes.wakka

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
User defined structure of overlapping data
2121
=={{fbdoc item="keyword" value="KeyPgExtends|EXTENDS"}}==
2222
Extends an user defined type to derive another
23+
=={{fbdoc item="keyword" value="KeyPgExtendsWstring|EXTENDS WSTRING"}}==
24+
Extends an user defined type to inherits Wstring behavior
25+
=={{fbdoc item="keyword" value="KeyPgExtendsZstring|EXTENDS ZSTRING"}}==
26+
Extends an user defined type to inherits Zstring behavior
2327
=={{fbdoc item="keyword" value="KeyPgImplements|IMPLEMENTS"}}==
2428
Not implemented. Keyword reserved.
2529
=={{fbdoc item="keyword" value="KeyPgField|FIELD"}}==

doc/manual/cache/CompilerCmdLine.wakka

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Using the **fbc** command-line.
7272
=={{fbdoc item="keyword" value="CompilerOptex|-ex"}}==
7373
Add error checking with RESUME support
7474
=={{fbdoc item="keyword" value="CompilerOptexx|-exx"}}==
75-
Same as ##-ex##, plus array bounds and non-null-pointer checking
75+
Same as ##-ex##, plus array bounds, null-pointer, and error location reporting
7676
=={{fbdoc item="keyword" value="CompilerOptWa|-Wa < opt >"}}==
7777
Pass options to GAS (separated by commas)
7878
=={{fbdoc item="keyword" value="CompilerOptWc|-Wc < opt >"}}==

0 commit comments

Comments
 (0)