]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #67195 - 0dvictor:nolink, r=tmandry
authorTyler Mandry <tmandry@gmail.com>
Thu, 23 Jan 2020 00:02:08 +0000 (16:02 -0800)
committerGitHub <noreply@github.com>
Thu, 23 Jan 2020 00:02:08 +0000 (16:02 -0800)
commit0c3827bfa764340298a224bc68d422c52519e0bb
tree855442fe1710ff235f8ea29628dce81581b1f5e3
parentd1e594f4029c6ac8feb7c2acf9f9e04c1b9c493c
parent6a6ebb4403683e1e12d3916cabc1a4898ce798cf
Rollup merge of #67195 - 0dvictor:nolink, r=tmandry

[experiment] Add `-Z no-link` flag

Adds a compiler option to allow rustc compile a crate without linking.
With this flag, `rustc` serializes codegen_results into a `.rlink` file.

Part of Issue #64191