auto merge of #17681 : jgallagher/rust/dep-info-escape-spaces, r=alexcrichton
cc #17627
This commit is contained in:
commit
dd7f00de80
7 changed files with 82 additions and 7 deletions
13
mk/tests.mk
13
mk/tests.mk
|
@ -261,12 +261,13 @@ ALL_HS := $(filter-out $(S)src/rt/valgrind/valgrind.h \
|
||||||
tidy:
|
tidy:
|
||||||
@$(call E, check: formatting)
|
@$(call E, check: formatting)
|
||||||
$(Q)find $(S)src -name '*.r[sc]' \
|
$(Q)find $(S)src -name '*.r[sc]' \
|
||||||
| grep '^$(S)src/jemalloc' -v \
|
-and -not -regex '^$(S)src/jemalloc.*' \
|
||||||
| grep '^$(S)src/libuv' -v \
|
-and -not -regex '^$(S)src/libuv.*' \
|
||||||
| grep '^$(S)src/llvm' -v \
|
-and -not -regex '^$(S)src/llvm.*' \
|
||||||
| grep '^$(S)src/gyp' -v \
|
-and -not -regex '^$(S)src/gyp.*' \
|
||||||
| grep '^$(S)src/libbacktrace' -v \
|
-and -not -regex '^$(S)src/libbacktrace.*' \
|
||||||
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
|
-print0 \
|
||||||
|
| xargs -0 -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
|
||||||
$(Q)find $(S)src/etc -name '*.py' \
|
$(Q)find $(S)src/etc -name '*.py' \
|
||||||
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
|
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
|
||||||
$(Q)find $(S)src/doc -name '*.js' \
|
$(Q)find $(S)src/doc -name '*.js' \
|
||||||
|
|
|
@ -616,6 +616,12 @@ pub fn stop_after_phase_5(sess: &Session) -> bool {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn escape_dep_filename(filename: &str) -> String {
|
||||||
|
// Apparently clang and gcc *only* escape spaces:
|
||||||
|
// http://llvm.org/klaus/clang/commit/9d50634cfc268ecc9a7250226dd5ca0e945240d4
|
||||||
|
filename.replace(" ", "\\ ")
|
||||||
|
}
|
||||||
|
|
||||||
fn write_out_deps(sess: &Session,
|
fn write_out_deps(sess: &Session,
|
||||||
input: &Input,
|
input: &Input,
|
||||||
outputs: &OutputFilenames,
|
outputs: &OutputFilenames,
|
||||||
|
@ -659,7 +665,7 @@ fn write_out_deps(sess: &Session,
|
||||||
// write Makefile-compatible dependency rules
|
// write Makefile-compatible dependency rules
|
||||||
let files: Vec<String> = sess.codemap().files.borrow()
|
let files: Vec<String> = sess.codemap().files.borrow()
|
||||||
.iter().filter(|fmap| fmap.is_real_file())
|
.iter().filter(|fmap| fmap.is_real_file())
|
||||||
.map(|fmap| fmap.name.to_string())
|
.map(|fmap| escape_dep_filename(fmap.name.as_slice()))
|
||||||
.collect();
|
.collect();
|
||||||
let mut file = try!(io::File::create(&deps_filename));
|
let mut file = try!(io::File::create(&deps_filename));
|
||||||
for path in out_filenames.iter() {
|
for path in out_filenames.iter() {
|
||||||
|
|
25
src/test/run-make/dep-info-spaces/Makefile
Normal file
25
src/test/run-make/dep-info-spaces/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
-include ../tools.mk
|
||||||
|
|
||||||
|
# FIXME: ignore freebsd/windows
|
||||||
|
# (windows: see `../dep-info/Makefile`)
|
||||||
|
ifneq ($(shell uname),FreeBSD)
|
||||||
|
ifndef IS_WINDOWS
|
||||||
|
all:
|
||||||
|
$(RUSTC) --dep-info $(TMPDIR)/custom-deps-file.d --crate-type=lib lib.rs
|
||||||
|
sleep 1
|
||||||
|
touch 'foo foo.rs'
|
||||||
|
-rm -f $(TMPDIR)/done
|
||||||
|
$(MAKE) -drf Makefile.foo
|
||||||
|
rm $(TMPDIR)/done
|
||||||
|
pwd
|
||||||
|
$(MAKE) -drf Makefile.foo
|
||||||
|
rm $(TMPDIR)/done && exit 1 || exit 0
|
||||||
|
else
|
||||||
|
all:
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
else
|
||||||
|
all:
|
||||||
|
|
||||||
|
endif
|
7
src/test/run-make/dep-info-spaces/Makefile.foo
Normal file
7
src/test/run-make/dep-info-spaces/Makefile.foo
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
LIB := $(shell $(RUSTC) --print-file-name --crate-type=lib lib.rs)
|
||||||
|
|
||||||
|
$(TMPDIR)/$(LIB):
|
||||||
|
$(RUSTC) --dep-info $(TMPDIR)/custom-deps-file.d --crate-type=lib lib.rs
|
||||||
|
touch $(TMPDIR)/done
|
||||||
|
|
||||||
|
-include $(TMPDIR)/custom-deps-file.d
|
11
src/test/run-make/dep-info-spaces/bar.rs
Normal file
11
src/test/run-make/dep-info-spaces/bar.rs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
pub fn bar() {}
|
11
src/test/run-make/dep-info-spaces/foo foo.rs
Normal file
11
src/test/run-make/dep-info-spaces/foo foo.rs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
pub fn foo() {}
|
14
src/test/run-make/dep-info-spaces/lib.rs
Normal file
14
src/test/run-make/dep-info-spaces/lib.rs
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
#[path="foo foo.rs"]
|
||||||
|
pub mod foo;
|
||||||
|
|
||||||
|
pub mod bar;
|
Loading…
Add table
Add a link
Reference in a new issue