]> git.lizzy.rs Git - rust.git/commitdiff
fix built-in target detection
authorJorge Aparicio <japaricious@gmail.com>
Mon, 2 May 2016 23:51:24 +0000 (18:51 -0500)
committerJorge Aparicio <japaricious@gmail.com>
Mon, 2 May 2016 23:59:40 +0000 (18:59 -0500)
previously the logic was accepting wrong triples (like
`x86_64_unknown-linux-musl`) as valid ones (like `x86_64-unknown-linux-musl`) if
they contained an underscore instead of a dash.

fixes #33329

src/librustc_back/target/mod.rs
src/test/run-make/issue-33329/Makefile [new file with mode: 0644]
src/test/run-make/issue-33329/main.rs [new file with mode: 0644]

index 3f75201aad2cc1422e67910f93faabea63ed508c..a13a94e12e5d6d2d3829fa143c7aaeb888f0157c 100644 (file)
@@ -71,10 +71,9 @@ macro_rules! supported_targets {
 
         // this would use a match if stringify! were allowed in pattern position
         fn load_specific(target: &str) -> Option<Target> {
-            let target = target.replace("-", "_");
             if false { }
             $(
-                else if target == stringify!($module) {
+                else if target == $triple {
                     let mut t = $module::target();
                     t.options.is_builtin = true;
                     debug!("Got builtin target: {:?}", t);
diff --git a/src/test/run-make/issue-33329/Makefile b/src/test/run-make/issue-33329/Makefile
new file mode 100644 (file)
index 0000000..cd00ebc
--- /dev/null
@@ -0,0 +1,3 @@
+all:
+       $(RUSTC) --target x86_64_unknown-linux-musl main.rs 2>&1 | \
+               grep "error: Error loading target specification: Could not find specification for target"
diff --git a/src/test/run-make/issue-33329/main.rs b/src/test/run-make/issue-33329/main.rs
new file mode 100644 (file)
index 0000000..e06c0a5
--- /dev/null
@@ -0,0 +1,11 @@
+// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+fn main() {}