Skip to content

Commit

Permalink
add help about @response files
Browse files Browse the repository at this point in the history
  • Loading branch information
enricosada committed Jan 5, 2016
1 parent 365748a commit 71dc941
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fsharp/CompileOptions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,8 @@ let miscFlagsBoth tcConfigB =

let miscFlagsFsc tcConfigB =
miscFlagsBoth tcConfigB @
[ CompilerOption("help", tagNone, OptionHelp (fun blocks -> displayHelpFsc tcConfigB blocks), None, Some (FSComp.SR.optsHelp()))
[ CompilerOption("help", tagNone, OptionHelp (fun blocks -> displayHelpFsc tcConfigB blocks), None, Some (FSComp.SR.optsHelp()));
CompilerOption("@<file>", tagNone, OptionUnit ignore, None, Some (FSComp.SR.optsResponseFile()))
]
let miscFlagsFsi tcConfigB = miscFlagsBoth tcConfigB

Expand Down
1 change: 1 addition & 0 deletions src/fsharp/FSComp.txt
Original file line number Diff line number Diff line change
Expand Up @@ -888,6 +888,7 @@ optsDefine,"Define conditional compilation symbols (Short form: -d)"
optsMlcompatibility,"Ignore ML compatibility warnings"
optsNologo,"Suppress compiler copyright message"
optsHelp,"Display this usage message (Short form: -?)"
optsResponseFile,"Read response file for more options"
optsCodepage,"Specify the codepage used to read source files"
optsUtf8output,"Output messages in UTF-8 encoding"
optsFullpaths,"Output messages with fully qualified paths"
Expand Down

0 comments on commit 71dc941

Please sign in to comment.