]> git.proxmox.com Git - cargo.git/commitdiff
Remove config references to the `ar` tool
authorAlex Crichton <alex@alexcrichton.com>
Mon, 8 Feb 2016 17:52:08 +0000 (09:52 -0800)
committerAlex Crichton <alex@alexcrichton.com>
Mon, 8 Feb 2016 17:52:35 +0000 (09:52 -0800)
This is largely no longer needed as we bundle llvm-ar and use that (and it's
cross platform). Note that the underlying support still exists in Cargo as the
flag hasn't been removed from the compiler outright, and older compilers may
still be in use. Just no need to document it so prominently when it's no longer
needed!

src/doc/config.md

index d911e87bf2f000bfebe8318cc7b03823871a80be..624a95afe0dcd7e1364fdd3192f890f35f7083fa 100644 (file)
@@ -59,16 +59,14 @@ vcs = "none"
 # literal string "$triple", and it will apply whenever that target triple is
 # being compiled to.
 [target]
-# For Cargo builds which do not mention --target, these are the ar/linker tools
-# which are passed to rustc to use (via `-C ar=` and `-C linker=`). By default
-# these flags are not passed to the compiler.
-ar = ".."
+# For Cargo builds which do not mention --target, this is the linker
+# which is passed to rustc (via `-C linker=`). By default this flag is not
+# passed to the compiler.
 linker = ".."
 
 [target.$triple]
-# Similar to the above ar/linker tool configuration, but this only applies to
+# Similar to the above linker configuration, but this only applies to
 # when the `$triple` is being compiled for.
-ar = ".."
 linker = ".."
 
 # Configuration keys related to the registry