Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/compiler/fbc.bas
Original file line number Diff line number Diff line change
Expand Up @@ -1869,13 +1869,13 @@ private sub handleOpt(byval optid as integer, byref arg as string)
end if

case OPT_WA
fbc.extopt.gas = " " + hReplace( arg, ",", " " ) + " "
fbc.extopt.gas += " " + hReplace( arg, ",", " " ) + " "

case OPT_WC
fbc.extopt.gcc = " " + hReplace( arg, ",", " " ) + " "
fbc.extopt.gcc += " " + hReplace( arg, ",", " " ) + " "

case OPT_WL
fbc.extopt.ld = " " + hReplace( arg, ",", " " ) + " "
fbc.extopt.ld += " " + hReplace( arg, ",", " " ) + " "

case OPT_X
fbc.outname = arg
Expand Down