diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2017-10-07 19:26:02 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-07 19:26:02 +0300 |
| commit | 691ab6c5bf597e98a4bae94b9a433f029f9ca9c1 (patch) | |
| tree | b9e6fbded2c5e007bb78e538bcbf7966a6f4e9ab | |
| parent | bb4d1491466d8239a7a5fd68bd605e3276e97afb (diff) | |
| download | rust-petrochenkov-patch-1.tar.gz | |
Document that `-C ar=PATH` doesn't do anythingpetrochenkov-patch-1
| -rw-r--r-- | src/librustc/session/config.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 7c1d457a6ee..8d1ad5d7bc4 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -874,7 +874,8 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options, build_codegen_options, "C", "codegen", CG_OPTIONS, cg_type_desc, cgsetters, ar: Option<String> = (None, parse_opt_string, [UNTRACKED], - "tool to assemble archives with"), + "tool to assemble archives with (has no effect currently, \ + rustc doesn't use an external archiver)"), linker: Option<String> = (None, parse_opt_string, [UNTRACKED], "system linker to link outputs with"), link_arg: Vec<String> = (vec![], parse_string_push, [UNTRACKED], |
