Skip to content

Commit 9387d18

Browse files
committed
Auto merge of #60426 - varkor:fix-duplicate-arg-handling, r=alexcrichton
Stop `-O`/`-C opt-level` and `-g`/`-C debuginfo` conflicting Allow `-O` and `-C opt-level`, and `-g` and `-C debuginfo` to be specified simultaneously without conflict. In such cases, the rightmost provided option is chosen. Fixes #7493. Fixes #32352. ~Blocked on rust-lang/getopts#79 r? @alexcrichton
2 parents 8dd4aae + 5ba5d35 commit 9387d18

File tree

6 files changed

+60
-18
lines changed

6 files changed

+60
-18
lines changed

Cargo.lock

+10-10
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ dependencies = [
169169
"cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
170170
"cmake 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)",
171171
"filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
172-
"getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
172+
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
173173
"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
174174
"libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)",
175175
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -463,7 +463,7 @@ dependencies = [
463463
"diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
464464
"env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
465465
"filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
466-
"getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
466+
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
467467
"lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
468468
"libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)",
469469
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -484,7 +484,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
484484
dependencies = [
485485
"diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
486486
"filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
487-
"getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
487+
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
488488
"libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)",
489489
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
490490
"miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -974,7 +974,7 @@ dependencies = [
974974

975975
[[package]]
976976
name = "getopts"
977-
version = "0.2.18"
977+
version = "0.2.19"
978978
source = "registry+https://github.com/rust-lang/crates.io-index"
979979
dependencies = [
980980
"unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1989,7 +1989,7 @@ version = "0.1.2"
19891989
source = "registry+https://github.com/rust-lang/crates.io-index"
19901990
dependencies = [
19911991
"bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
1992-
"getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
1992+
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
19931993
]
19941994

19951995
[[package]]
@@ -2008,7 +2008,7 @@ version = "0.5.0"
20082008
source = "registry+https://github.com/rust-lang/crates.io-index"
20092009
dependencies = [
20102010
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
2011-
"getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
2011+
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
20122012
"memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
20132013
"unicase 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
20142014
]
@@ -3094,7 +3094,7 @@ dependencies = [
30943094
"dirs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
30953095
"env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
30963096
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
3097-
"getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
3097+
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
30983098
"ignore 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
30993099
"itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
31003100
"lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -3521,7 +3521,7 @@ dependencies = [
35213521
name = "test"
35223522
version = "0.0.0"
35233523
dependencies = [
3524-
"getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
3524+
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
35253525
"proc_macro 0.0.0",
35263526
"term 0.0.0",
35273527
]
@@ -3531,7 +3531,7 @@ name = "tester"
35313531
version = "0.5.0"
35323532
source = "registry+https://github.com/rust-lang/crates.io-index"
35333533
dependencies = [
3534-
"getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
3534+
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
35353535
"libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)",
35363536
"term 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
35373537
]
@@ -4131,7 +4131,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
41314131
"checksum futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "1a70b146671de62ec8c8ed572219ca5d594d9b06c0b364d5e67b722fc559b48c"
41324132
"checksum fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34dd4c507af68d37ffef962063dfa1944ce0dd4d5b82043dbab1dabe088610c3"
41334133
"checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d"
4134-
"checksum getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "0a7292d30132fb5424b354f5dc02512a86e4c516fe544bb7a25e7f266951b797"
4134+
"checksum getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)" = "72327b15c228bfe31f1390f93dd5e9279587f0463836393c9df719ce62a3e450"
41354135
"checksum git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c7339329bfa14a00223244311560d11f8f489b453fb90092af97f267a6090ab0"
41364136
"checksum git2-curl 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d58551e903ed7e2d6fe3a2f3c7efa3a784ec29b19d0fbb035aaf0497c183fbdd"
41374137
"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"

src/bootstrap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ build_helper = { path = "../build_helper" }
3939
cmake = "0.1.38"
4040
filetime = "0.2"
4141
num_cpus = "1.0"
42-
getopts = "0.2.18"
42+
getopts = "0.2.19"
4343
cc = "1.0.35"
4444
libc = "0.2"
4545
serde = "1.0.8"

src/librustc/session/config.rs

+25-6
Original file line numberDiff line numberDiff line change
@@ -2181,10 +2181,21 @@ pub fn build_session_options_and_crate_config(
21812181
TargetTriple::from_triple(host_triple())
21822182
};
21832183
let opt_level = {
2184-
if matches.opt_present("O") {
2185-
if cg.opt_level.is_some() {
2186-
early_error(error_format, "-O and -C opt-level both provided");
2184+
// The `-O` and `-C opt-level` flags specify the same setting, so we want to be able
2185+
// to use them interchangeably. However, because they're technically different flags,
2186+
// we need to work out manually which should take precedence if both are supplied (i.e.
2187+
// the rightmost flag). We do this by finding the (rightmost) position of both flags and
2188+
// comparing them. Note that if a flag is not found, its position will be `None`, which
2189+
// always compared less than `Some(_)`.
2190+
let max_o = matches.opt_positions("O").into_iter().max();
2191+
let max_c = matches.opt_strs_pos("C").into_iter().flat_map(|(i, s)| {
2192+
if let Some("opt-level") = s.splitn(2, '=').next() {
2193+
Some(i)
2194+
} else {
2195+
None
21872196
}
2197+
}).max();
2198+
if max_o > max_c {
21882199
OptLevel::Default
21892200
} else {
21902201
match cg.opt_level.as_ref().map(String::as_ref) {
@@ -2208,11 +2219,19 @@ pub fn build_session_options_and_crate_config(
22082219
}
22092220
}
22102221
};
2222+
// The `-g` and `-C debuginfo` flags specify the same setting, so we want to be able
2223+
// to use them interchangeably. See the note above (regarding `-O` and `-C opt-level`)
2224+
// for more details.
22112225
let debug_assertions = cg.debug_assertions.unwrap_or(opt_level == OptLevel::No);
2212-
let debuginfo = if matches.opt_present("g") {
2213-
if cg.debuginfo.is_some() {
2214-
early_error(error_format, "-g and -C debuginfo both provided");
2226+
let max_g = matches.opt_positions("g").into_iter().max();
2227+
let max_c = matches.opt_strs_pos("C").into_iter().flat_map(|(i, s)| {
2228+
if let Some("debuginfo") = s.splitn(2, '=').next() {
2229+
Some(i)
2230+
} else {
2231+
None
22152232
}
2233+
}).max();
2234+
let debuginfo = if max_g > max_c {
22162235
DebugInfo::Full
22172236
} else {
22182237
match cg.debuginfo {

src/libtest/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "lib.rs"
1010
crate-type = ["dylib", "rlib"]
1111

1212
[dependencies]
13-
getopts = "0.2.18"
13+
getopts = "0.2.19"
1414
term = { path = "../libterm" }
1515

1616
# not actually used but needed to always have proc_macro in the sysroot
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
-include ../tools.mk
2+
3+
# FIXME: it would be good to check that it's actually the rightmost flags
4+
# that are used when multiple flags are specified, but I can't think of a
5+
# reliable way to check this.
6+
7+
all:
8+
# Test that `-O` and `-C opt-level` can be specified multiple times.
9+
# The rightmost flag will be used over any previous flags.
10+
$(RUSTC) -O -O main.rs
11+
$(RUSTC) -O -C opt-level=0 main.rs
12+
$(RUSTC) -C opt-level=0 -O main.rs
13+
$(RUSTC) -C opt-level=0 -C opt-level=2 main.rs
14+
$(RUSTC) -C opt-level=2 -C opt-level=0 main.rs
15+
16+
# Test that `-g` and `-C debuginfo` can be specified multiple times.
17+
# The rightmost flag will be used over any previous flags.
18+
$(RUSTC) -g -g main.rs
19+
$(RUSTC) -g -C debuginfo=0 main.rs
20+
$(RUSTC) -C debuginfo=0 -g main.rs
21+
$(RUSTC) -C debuginfo=0 -C debuginfo=2 main.rs
22+
$(RUSTC) -C debuginfo=2 -C debuginfo=0 main.rs
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fn main() {}

0 commit comments

Comments
 (0)