We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2da5a commit d1e485dCopy full SHA for d1e485d
src/compiler/fbc.bas
@@ -1869,13 +1869,13 @@ private sub handleOpt(byval optid as integer, byref arg as string)
1869
end if
1870
1871
case OPT_WA
1872
- fbc.extopt.gas = " " + hReplace( arg, ",", " " ) + " "
+ fbc.extopt.gas += " " + hReplace( arg, ",", " " ) + " "
1873
1874
case OPT_WC
1875
- fbc.extopt.gcc = " " + hReplace( arg, ",", " " ) + " "
+ fbc.extopt.gcc += " " + hReplace( arg, ",", " " ) + " "
1876
1877
case OPT_WL
1878
- fbc.extopt.ld = " " + hReplace( arg, ",", " " ) + " "
+ fbc.extopt.ld += " " + hReplace( arg, ",", " " ) + " "
1879
1880
case OPT_X
1881
fbc.outname = arg
0 commit comments