about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-07 17:16:34 +0000
committerbors <bors@rust-lang.org>2014-07-07 17:16:34 +0000
commit49bc17bfdd7143909aede81652d7d624cecd8a70 (patch)
tree9f6b053762ba7efb1fef234193a83fe85039228f
parent4f120e6bafe971452adfede158a7957b00562a4e (diff)
parent12b3498cedb3a3f2568a9e8796a52d3a6f234f26 (diff)
downloadrust-49bc17bfdd7143909aede81652d7d624cecd8a70.tar.gz
rust-49bc17bfdd7143909aede81652d7d624cecd8a70.zip
auto merge of #15502 : sfackler/rust/link_args_spaces, r=alexcrichton
Closes #15487
-rw-r--r--src/librustc/metadata/cstore.rs2
-rw-r--r--src/test/run-pass/issue-15487.rs20
2 files changed, 21 insertions, 1 deletions
diff --git a/src/librustc/metadata/cstore.rs b/src/librustc/metadata/cstore.rs
index 9d6fd109b48..5dafb7a661d 100644
--- a/src/librustc/metadata/cstore.rs
+++ b/src/librustc/metadata/cstore.rs
@@ -196,7 +196,7 @@ impl CStore {
     }
 
     pub fn add_used_link_args(&self, args: &str) {
-        for s in args.split(' ') {
+        for s in args.split(' ').filter(|s| !s.is_empty()) {
             self.used_link_args.borrow_mut().push(s.to_string());
         }
     }
diff --git a/src/test/run-pass/issue-15487.rs b/src/test/run-pass/issue-15487.rs
new file mode 100644
index 00000000000..ee7595819bf
--- /dev/null
+++ b/src/test/run-pass/issue-15487.rs
@@ -0,0 +1,20 @@
+// Copyright 2014 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.
+
+// ignore-win32
+
+#![feature(link_args)]
+
+#[link_args="-lc  -lm"]
+#[link_args=" -lc"]
+#[link_args="-lc "]
+extern {}
+
+fn main() {}