Skip to content

Commit 23f0ccf

Browse files
committed
Stabilise link-self-contained option
1 parent 8bfe289 commit 23f0ccf

File tree

4 files changed

+23
-10
lines changed

4 files changed

+23
-10
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,7 @@ fn get_crt_libs_path(sess: &Session) -> Option<PathBuf> {
10841084

10851085
fn get_object_file_path(sess: &Session, name: &str, self_contained: bool) -> PathBuf {
10861086
// prefer system {,dll}crt2.o libs, see get_crt_libs_path comment for more details
1087-
if sess.opts.debugging_opts.link_self_contained.is_none()
1087+
if sess.opts.cg.link_self_contained.is_none()
10881088
&& sess.target.target.llvm_target.contains("windows-gnu")
10891089
{
10901090
if let Some(compiler_libs_path) = get_crt_libs_path(sess) {
@@ -1289,7 +1289,7 @@ fn link_output_kind(sess: &Session, crate_type: CrateType) -> LinkOutputKind {
12891289
/// Whether we link to our own CRT objects instead of relying on gcc to pull them.
12901290
/// We only provide such support for a very limited number of targets.
12911291
fn crt_objects_fallback(sess: &Session, crate_type: CrateType) -> bool {
1292-
if let Some(self_contained) = sess.opts.debugging_opts.link_self_contained {
1292+
if let Some(self_contained) = sess.opts.cg.link_self_contained {
12931293
return self_contained;
12941294
}
12951295

@@ -1499,7 +1499,7 @@ fn link_local_crate_native_libs_and_dependent_crate_libs<'a, B: ArchiveBuilder<'
14991499
/// Add sysroot and other globally set directories to the directory search list.
15001500
fn add_library_search_dirs(cmd: &mut dyn Linker, sess: &Session, self_contained: bool) {
15011501
// Prefer system mingw-w64 libs, see get_crt_libs_path comment for more details.
1502-
if sess.opts.debugging_opts.link_self_contained.is_none()
1502+
if sess.opts.cg.link_self_contained.is_none()
15031503
&& cfg!(windows)
15041504
&& sess.target.target.llvm_target.contains("windows-gnu")
15051505
{

compiler/rustc_interface/src/tests.rs

+1
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ fn test_codegen_options_tracking_hash() {
402402
// `link_arg` is omitted because it just forwards to `link_args`.
403403
untracked!(link_args, vec![String::from("abc"), String::from("def")]);
404404
untracked!(link_dead_code, Some(true));
405+
untracked!(link_self_contained, Some(true));
405406
untracked!(linker, Some(PathBuf::from("linker")));
406407
untracked!(linker_flavor, Some(LinkerFlavor::Gcc));
407408
untracked!(no_stack_check, true);

compiler/rustc_session/src/options.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,9 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
719719
"extra arguments to append to the linker invocation (space separated)"),
720720
link_dead_code: Option<bool> = (None, parse_opt_bool, [UNTRACKED],
721721
"keep dead code at link time (useful for code coverage) (default: no)"),
722+
link_self_contained: Option<bool> = (None, parse_opt_bool, [UNTRACKED],
723+
"control whether to link Rust provided C objects/libraries or rely
724+
on C toolchain installed in the system"),
722725
linker: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
723726
"system linker to link outputs with"),
724727
linker_flavor: Option<LinkerFlavor> = (None, parse_linker_flavor, [UNTRACKED],
@@ -894,9 +897,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
894897
"keep hygiene data after analysis (default: no)"),
895898
link_native_libraries: bool = (true, parse_bool, [UNTRACKED],
896899
"link native libraries in the linker invocation (default: yes)"),
897-
link_self_contained: Option<bool> = (None, parse_opt_bool, [TRACKED],
898-
"control whether to link Rust provided C objects/libraries or rely
899-
on C toolchain installed in the system"),
900900
link_only: bool = (false, parse_bool, [TRACKED],
901901
"link the `.rlink` file generated by `-Z no-link` (default: no)"),
902902
llvm_time_trace: bool = (false, parse_bool, [UNTRACKED],

src/doc/rustc/src/codegen-options/index.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ incremental builds the default is 256 which allows caching to be more granular.
4444

4545
## control-flow-guard
4646

47-
This flag controls whether LLVM enables the Windows [Control Flow
48-
Guard](https://docs.microsoft.com/en-us/windows/win32/secbp/control-flow-guard)
49-
platform security feature. This flag is currently ignored for non-Windows targets.
47+
This flag controls whether LLVM enables the Windows [Control Flow
48+
Guard](https://docs.microsoft.com/en-us/windows/win32/secbp/control-flow-guard)
49+
platform security feature. This flag is currently ignored for non-Windows targets.
5050
It takes one of the following values:
5151

5252
* `y`, `yes`, `on`, `checks`, or no value: enable Control Flow Guard.
53-
* `nochecks`: emit Control Flow Guard metadata without runtime enforcement checks (this
53+
* `nochecks`: emit Control Flow Guard metadata without runtime enforcement checks (this
5454
should only be used for testing purposes as it does not provide security enforcement).
5555
* `n`, `no`, `off`: do not enable Control Flow Guard (the default).
5656

@@ -200,6 +200,18 @@ the following values:
200200
An example of when this flag might be useful is when trying to construct code coverage
201201
metrics.
202202

203+
## link-self-contained
204+
205+
On targets that support it this flag controls whether the linker will use libraries and objects
206+
shipped with Rust instead or those in the system.
207+
It takes one of the following values:
208+
209+
* no value: rustc will use heuristic to disable self-contained mode if system has necessary tools.
210+
* `y`, `yes`, `on`: use only libraries/objects shipped with Rust.
211+
* `n`, `no`, or `off`: rely on the user or the linker to provide non-Rust libraries/objects.
212+
213+
This allows overriding cases when detection fails or user wants to use shipped libraries.
214+
203215
## linker
204216

205217
This flag controls which linker `rustc` invokes to link your code. It takes a

0 commit comments

Comments
 (0)