File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,8 @@ local function create_parser()
182
182
argparser :flag (' --print-assembly' , ' Print the assembly generated code only' )
183
183
)
184
184
argparser :mutex (
185
- argparser :argument (" input" , " Input source file" ):args (" ?" ),
185
+ argparser :argument (" input" , " Input source file\n\z
186
+ Use '-' to read from stdin" ):args (" ?" ),
186
187
argparser :flag (' --config' , ' Print config variables only' ),
187
188
argparser :flag (' -v --version' , ' Print compiler detailed version' ),
188
189
argparser :flag (' --semver' , ' Print compiler semantic version' )
@@ -226,7 +227,7 @@ local function create_parser()
226
227
argparser :flag (' -q --quiet' , " Be quiet" , defconfig .quiet ):hidden (true )
227
228
argparser :flag (' -j --turbo' , " Compile faster by disabling the garbage collector (uses more MEM)" ):hidden (true )
228
229
argparser :argument (" runargs" , " Arguments passed to the application\n\z
229
- Use '--' to is passed) " )
230
+ Use '--' to avoid conflicts with compiler options " )
230
231
:args (" *" )
231
232
return argparser
232
233
end
You can’t perform that action at this time.
0 commit comments