diff --git a/docs/fsharp/language-reference/compiler-options.md b/docs/fsharp/language-reference/compiler-options.md
index 221b005f88775..357732736233f 100644
--- a/docs/fsharp/language-reference/compiler-options.md
+++ b/docs/fsharp/language-reference/compiler-options.md
@@ -42,6 +42,7 @@ The following table shows compiler options listed alphabetically. Some of the F#
|`--nowarn:warning-number-list`|Disables specific warnings listed by number. Separate each warning number by a comma. You can discover the warning number for any warning from the compilation output.
This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/nowarn (C# Compiler Options)](https://msdn.microsoft.com/library/7f28x9z3.aspx).|
|--optimize[+|-][optimization-option-list]
-O[+|-] [optimization-option-list]|Enables or disables optimizations. Some optimization options can be disabled or enabled selectively by listing them. These are: `nojitoptimize`, `nojittracking`, `nolocaloptimize`, `nocrossoptimize`, `notailcalls`.|
|`--out:output-filename`
`-o:output-filename`|Specifies the name of the compiled assembly or module.
This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/out (C# Compiler Options)](https://msdn.microsoft.com/library/bw3t50f3.aspx).|
+|`--pathmap:path=sourcePath,...`|Specifies how to map physical paths to source path names output by the compiler.
This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/pathmap (C# Compiler Options)](/csharp/language-reference/compiler-options/pathmap-compiler-option).|
|`--pdb:pdb-filename`|Names the output debug PDB (program database) file. This option only applies when `--debug` is also enabled.
This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/pdb (C# Compiler Options)](https://msdn.microsoft.com/library/ms228625.aspx).|
|`--platform:platform-name`|Specifies that the generated code will only run on the specified platform (`x86`, `Itanium`, or `x64`), or, if the platform-name `anycpu` is chosen, specifies that the generated code can run on any platform.
This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/platform (C# Compiler Options)](https://msdn.microsoft.com/library/zekwfyz4.aspx).|
|`--preferreduilang:lang`| Specifies the preferred output language culture name (for example, `es-ES`, `ja-JP`). |