Skip to content

Commit 464ec64

Browse files
committed
Auto merge of rust-lang#97409 - GuillaumeGomez:rollup-808v9ge, r=GuillaumeGomez
Rollup of 4 pull requests Successful merges: - rust-lang#97317 (Allow to click on setting text) - rust-lang#97375 (Simplify implementation of `-Z gcc-ld`) - rust-lang#97394 (Add more eslint rules) - rust-lang#97407 (Update books) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 4cbaac6 + f74e61e commit 464ec64

File tree

23 files changed

+154
-173
lines changed

23 files changed

+154
-173
lines changed

compiler/rustc_codegen_ssa/src/back/command.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,7 @@ impl Command {
105105
}
106106
Program::Lld(ref p, flavor) => {
107107
let mut c = process::Command::new(p);
108-
c.arg("-flavor").arg(match flavor {
109-
LldFlavor::Wasm => "wasm",
110-
LldFlavor::Ld => "gnu",
111-
LldFlavor::Link => "link",
112-
LldFlavor::Ld64 => "darwin",
113-
});
108+
c.arg("-flavor").arg(flavor.as_str());
114109
if let LldFlavor::Wasm = flavor {
115110
// LLVM expects host-specific formatting for @file
116111
// arguments, but we always generate posix formatted files

compiler/rustc_codegen_ssa/src/back/link.rs

+14-31
Original file line numberDiff line numberDiff line change
@@ -2698,37 +2698,20 @@ fn add_gcc_ld_path(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
26982698
if let LinkerFlavor::Gcc = flavor {
26992699
match ld_impl {
27002700
LdImpl::Lld => {
2701-
if sess.target.lld_flavor == LldFlavor::Ld64 {
2702-
let tools_path = sess.get_tools_search_paths(false);
2703-
let ld64_exe = tools_path
2704-
.into_iter()
2705-
.map(|p| p.join("gcc-ld"))
2706-
.map(|p| {
2707-
p.join(if sess.host.is_like_windows { "ld64.exe" } else { "ld64" })
2708-
})
2709-
.find(|p| p.exists())
2710-
.unwrap_or_else(|| sess.fatal("rust-lld (as ld64) not found"));
2711-
cmd.cmd().arg({
2712-
let mut arg = OsString::from("-fuse-ld=");
2713-
arg.push(ld64_exe);
2714-
arg
2715-
});
2716-
} else {
2717-
let tools_path = sess.get_tools_search_paths(false);
2718-
let lld_path = tools_path
2719-
.into_iter()
2720-
.map(|p| p.join("gcc-ld"))
2721-
.find(|p| {
2722-
p.join(if sess.host.is_like_windows { "ld.exe" } else { "ld" })
2723-
.exists()
2724-
})
2725-
.unwrap_or_else(|| sess.fatal("rust-lld (as ld) not found"));
2726-
cmd.cmd().arg({
2727-
let mut arg = OsString::from("-B");
2728-
arg.push(lld_path);
2729-
arg
2730-
});
2731-
}
2701+
let tools_path = sess.get_tools_search_paths(false);
2702+
let gcc_ld_dir = tools_path
2703+
.into_iter()
2704+
.map(|p| p.join("gcc-ld"))
2705+
.find(|p| {
2706+
p.join(if sess.host.is_like_windows { "ld.exe" } else { "ld" }).exists()
2707+
})
2708+
.unwrap_or_else(|| sess.fatal("rust-lld (as ld) not found"));
2709+
cmd.arg({
2710+
let mut arg = OsString::from("-B");
2711+
arg.push(gcc_ld_dir);
2712+
arg
2713+
});
2714+
cmd.arg(format!("-Wl,-rustc-lld-flavor={}", sess.target.lld_flavor.as_str()));
27322715
}
27332716
}
27342717
} else {

compiler/rustc_target/src/spec/mod.rs

+10-7
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,15 @@ pub enum LldFlavor {
108108
}
109109

110110
impl LldFlavor {
111+
pub fn as_str(&self) -> &'static str {
112+
match self {
113+
LldFlavor::Wasm => "wasm",
114+
LldFlavor::Ld64 => "darwin",
115+
LldFlavor::Ld => "gnu",
116+
LldFlavor::Link => "link",
117+
}
118+
}
119+
111120
fn from_str(s: &str) -> Option<Self> {
112121
Some(match s {
113122
"darwin" => LldFlavor::Ld64,
@@ -121,13 +130,7 @@ impl LldFlavor {
121130

122131
impl ToJson for LldFlavor {
123132
fn to_json(&self) -> Json {
124-
match *self {
125-
LldFlavor::Ld64 => "darwin",
126-
LldFlavor::Ld => "gnu",
127-
LldFlavor::Link => "link",
128-
LldFlavor::Wasm => "wasm",
129-
}
130-
.to_json()
133+
self.as_str().to_json()
131134
}
132135
}
133136

src/bootstrap/compile.rs

+5-8
Original file line numberDiff line numberDiff line change
@@ -1164,14 +1164,11 @@ impl Step for Assemble {
11641164
// for `-Z gcc-ld=lld`
11651165
let gcc_ld_dir = libdir_bin.join("gcc-ld");
11661166
t!(fs::create_dir(&gcc_ld_dir));
1167-
for flavor in ["ld", "ld64"] {
1168-
let lld_wrapper_exe = builder.ensure(crate::tool::LldWrapper {
1169-
compiler: build_compiler,
1170-
target: target_compiler.host,
1171-
flavor_feature: flavor,
1172-
});
1173-
builder.copy(&lld_wrapper_exe, &gcc_ld_dir.join(exe(flavor, target_compiler.host)));
1174-
}
1167+
let lld_wrapper_exe = builder.ensure(crate::tool::LldWrapper {
1168+
compiler: build_compiler,
1169+
target: target_compiler.host,
1170+
});
1171+
builder.copy(&lld_wrapper_exe, &gcc_ld_dir.join(exe("ld", target_compiler.host)));
11751172
}
11761173

11771174
if builder.config.rust_codegen_backends.contains(&INTERNER.intern_str("llvm")) {

src/bootstrap/dist.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -407,11 +407,8 @@ impl Step for Rustc {
407407
let gcc_lld_src_dir = src_dir.join("gcc-ld");
408408
let gcc_lld_dst_dir = dst_dir.join("gcc-ld");
409409
t!(fs::create_dir(&gcc_lld_dst_dir));
410-
for flavor in ["ld", "ld64"] {
411-
let exe_name = exe(flavor, compiler.host);
412-
builder
413-
.copy(&gcc_lld_src_dir.join(&exe_name), &gcc_lld_dst_dir.join(&exe_name));
414-
}
410+
let exe_name = exe("ld", compiler.host);
411+
builder.copy(&gcc_lld_src_dir.join(&exe_name), &gcc_lld_dst_dir.join(&exe_name));
415412
}
416413

417414
// Man pages

src/bootstrap/tool.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,6 @@ impl Step for Cargo {
656656
pub struct LldWrapper {
657657
pub compiler: Compiler,
658658
pub target: TargetSelection,
659-
pub flavor_feature: &'static str,
660659
}
661660

662661
impl Step for LldWrapper {
@@ -676,7 +675,7 @@ impl Step for LldWrapper {
676675
path: "src/tools/lld-wrapper",
677676
is_optional_tool: false,
678677
source_type: SourceType::InTree,
679-
extra_features: vec![self.flavor_feature.to_owned()],
678+
extra_features: Vec::new(),
680679
})
681680
.expect("expected to build -- essential tool");
682681

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.3
1+
0.9.5

src/doc/book

Submodule book updated 123 files

src/librustdoc/html/static/.eslintrc.js

+7
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,12 @@ module.exports = {
4747
{ "beforeColon": false, "afterColon": true, "mode": "strict" }
4848
],
4949
"func-call-spacing": ["error", "never"],
50+
"space-infix-ops": "error",
51+
"space-before-function-paren": ["error", "never"],
52+
"space-before-blocks": "error",
53+
"comma-dangle": ["error", "always-multiline"],
54+
"comma-style": ["error", "last"],
55+
"max-len": ["error", { "code": 100, "tabWidth": 4 }],
56+
"eol-last": ["error", "always"],
5057
}
5158
};

src/librustdoc/html/static/css/rustdoc.css

-24
Original file line numberDiff line numberDiff line change
@@ -1415,30 +1415,6 @@ pre.rust {
14151415
#settings-menu.rotate > a img {
14161416
animation: rotating 2s linear infinite;
14171417
}
1418-
#settings-menu #settings {
1419-
position: absolute;
1420-
right: 0;
1421-
z-index: 1;
1422-
display: block;
1423-
margin-top: 7px;
1424-
border-radius: 3px;
1425-
border: 1px solid;
1426-
}
1427-
#settings-menu #settings .setting-line {
1428-
margin: 0.6em;
1429-
}
1430-
/* This rule is to draw the little arrow connecting the settings menu to the gear icon. */
1431-
#settings-menu #settings::before {
1432-
content: '';
1433-
position: absolute;
1434-
right: 11px;
1435-
border: solid;
1436-
border-width: 1px 1px 0 0;
1437-
display: inline-block;
1438-
padding: 4px;
1439-
transform: rotate(-45deg);
1440-
top: -5px;
1441-
}
14421418

14431419
#help-button {
14441420
font-family: "Fira Sans", Arial, sans-serif;

src/librustdoc/html/static/css/settings.css

+34-6
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,12 @@
4646
.toggle {
4747
position: relative;
4848
display: inline-block;
49-
width: 45px;
49+
width: 100%;
5050
height: 27px;
5151
margin-right: 20px;
52+
display: flex;
53+
align-items: center;
54+
cursor: pointer;
5255
}
5356

5457
.toggle input {
@@ -57,12 +60,12 @@
5760
}
5861

5962
.slider {
60-
position: absolute;
63+
position: relative;
64+
width: 45px;
65+
display: block;
66+
height: 28px;
67+
margin-right: 20px;
6168
cursor: pointer;
62-
top: 0;
63-
left: 0;
64-
right: 0;
65-
bottom: 0;
6669
background-color: #ccc;
6770
transition: .3s;
6871
}
@@ -95,3 +98,28 @@ input:checked + .slider:before {
9598
width: 100%;
9699
display: block;
97100
}
101+
102+
div#settings {
103+
position: absolute;
104+
right: 0;
105+
z-index: 1;
106+
display: block;
107+
margin-top: 7px;
108+
border-radius: 3px;
109+
border: 1px solid;
110+
}
111+
#settings .setting-line {
112+
margin: 1.2em 0.6em;
113+
}
114+
/* This rule is to draw the little arrow connecting the settings menu to the gear icon. */
115+
div#settings::before {
116+
content: '';
117+
position: absolute;
118+
right: 11px;
119+
border: solid;
120+
border-width: 1px 1px 0 0;
121+
display: inline-block;
122+
padding: 4px;
123+
transform: rotate(-45deg);
124+
top: -5px;
125+
}

src/librustdoc/html/static/js/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function showMain() {
6363
removeClass(document.getElementById(MAIN_ID), "hidden");
6464
}
6565

66-
(function () {
66+
(function() {
6767
window.rootPath = getVar("root-path");
6868
window.currentCrate = getVar("current-crate");
6969
window.searchJS = resourcePath("search", ".js");
@@ -929,7 +929,7 @@ function loadCss(cssFileName) {
929929
searchState.setup();
930930
}());
931931

932-
(function () {
932+
(function() {
933933
let reset_button_timeout = null;
934934

935935
window.copy_path = but => {

src/librustdoc/html/static/js/scrape-examples.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"use strict";
44

5-
(function () {
5+
(function() {
66
// Number of lines shown when code viewer is not expanded
77
const MAX_LINES = 10;
88

src/librustdoc/html/static/js/settings.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"use strict";
77

8-
(function () {
8+
(function() {
99
const isSettingsPage = window.location.pathname.endsWith("/settings.html");
1010

1111
function changeSetting(settingName, value) {
@@ -130,12 +130,11 @@
130130
} else {
131131
// This is a toggle.
132132
const checked = setting["default"] === true ? " checked" : "";
133-
output += `
134-
<label class="toggle">
135-
<input type="checkbox" id="${js_data_name}"${checked}>
136-
<span class="slider"></span>
137-
</label>
138-
<div>${setting_name}</div>`;
133+
output += `<label class="toggle">\
134+
<input type="checkbox" id="${js_data_name}"${checked}>\
135+
<span class="slider"></span>\
136+
<span class="label">${setting_name}</span>\
137+
</label>`;
139138
}
140139
output += "</div>";
141140
}

src/librustdoc/html/static/js/source-script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ function highlightSourceLines(match) {
187187
}
188188
}
189189

190-
const handleSourceHighlight = (function () {
190+
const handleSourceHighlight = (function() {
191191
let prev_line_id = 0;
192192

193193
const set_fragment = name => {

src/librustdoc/html/static/js/storage.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const darkThemes = ["dark", "ayu"];
44
window.currentTheme = document.getElementById("themeStyle");
55
window.mainTheme = document.getElementById("mainThemeStyle");
66

7-
const settingsDataset = (function () {
7+
const settingsDataset = (function() {
88
const settingsElement = document.getElementById("default-settings");
99
if (settingsElement === null) {
1010
return null;
@@ -163,7 +163,7 @@ function useSystemTheme(value) {
163163
}
164164
}
165165

166-
const updateSystemTheme = (function () {
166+
const updateSystemTheme = (function() {
167167
if (!window.matchMedia) {
168168
// fallback to the CSS computed value
169169
return () => {

src/test/rustdoc-gui/settings.goml

+8-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ wait-for: "#settings"
3434

3535
// We check that the "Use system theme" is disabled.
3636
assert-property: ("#use-system-theme", {"checked": "false"})
37-
assert: "//*[@class='setting-line']/*[text()='Use system theme']"
37+
assert: "//*[@class='setting-line']//span[text()='Use system theme']"
3838
// Meaning that only the "theme" menu is showing up.
3939
assert: ".setting-line:not(.hidden) #theme"
4040
assert: ".setting-line.hidden #preferred-dark-theme"
@@ -55,7 +55,13 @@ assert: ".setting-line.hidden #theme"
5555
assert-text: ("#preferred-dark-theme .setting-name", "Preferred dark theme")
5656
assert-text: ("#preferred-light-theme .setting-name", "Preferred light theme")
5757

58+
// We now check that clicking on the "sliders"' text is like clicking on the slider.
59+
// To test it, we use the "Disable keyboard shortcuts".
60+
local-storage: {"rustdoc-disable-shortcuts": "false"}
61+
click: ".setting-line:last-child .toggle .label"
62+
assert-local-storage: {"rustdoc-disable-shortcuts": "true"}
63+
5864
// Now we go to the settings page to check that the CSS is loaded as expected.
5965
goto: file://|DOC_PATH|/settings.html
6066
wait-for: "#settings"
61-
assert-css: (".setting-line .toggle", {"width": "45px", "margin-right": "20px"})
67+
assert-css: (".setting-line .toggle .slider", {"width": "45px", "margin-right": "20px"})

src/tools/lld-wrapper/Cargo.toml

-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,3 @@ name = "lld-wrapper"
33
version = "0.1.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
6-
7-
[dependencies]
8-
9-
[features]
10-
ld = []
11-
ld64 = []

0 commit comments

Comments
 (0)