Skip to content

Rollup of 17 pull requests #42105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 46 commits into from
May 19, 2017
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
db16ca7
Update documention in windows::ffi
randomPoison May 6, 2017
e406cd1
Update documentation in windows::ffi
randomPoison May 6, 2017
d7df6dc
Merge remote-tracking branch 'rust-lang/master' into iss29367-windows…
randomPoison May 6, 2017
76128b3
Update documentation in windows::fs
randomPoison May 7, 2017
c350bc1
Fix documentation tests in windows::fs
randomPoison May 7, 2017
5135cc8
Fix tidy errors
randomPoison May 10, 2017
e6cde9f
Number of filtered out tests in tests summary
mersinvald May 11, 2017
94d2c43
add -Z pre-link-arg{,s} to rustc
japaric May 13, 2017
4f2f270
Fix regression on `include!(line!())`.
jseyfried May 15, 2017
1b6a182
Improve the error management when /proc is not mounted
sylvestre May 17, 2017
307d8e5
ci: allows shared scripts
malbarbo May 12, 2017
b955296
misc doc improvements for std::env
tshepang May 17, 2017
f4e33a0
fix typo in libstd/sync/mpsc/mod.rs docs
seeekr May 18, 2017
1eb6639
Make documentation works again by removing two unnecessary ES6 pieces.
pravic May 18, 2017
474cc91
Use in-memory representation for Fingerprint that is more amenable to…
michaelwoerister May 17, 2017
4549423
Use 128 instead of 64 bits for DefPath hashes
michaelwoerister May 18, 2017
b2fc7b1
Add documentation for `ExitStatus`
citizen428 May 11, 2017
d15c950
ci: move shared scripts to src/ci/docker/scripts/
malbarbo May 18, 2017
502eadb
ci: add filesystem layout docs
malbarbo May 18, 2017
ecfdc9a
rustbuild: install rust-analysis and rust-src when extended build is …
Keruspe May 17, 2017
801e2b7
rustbuild: refactor install
Keruspe May 18, 2017
c5163aa
Fix x.py
nagisa May 18, 2017
9b184c0
ci: fix dist-powerpc-linux image
malbarbo May 18, 2017
e86588e
Give a nicer error for non-Unicode arguments to rustc and rustdoc
cuviper May 18, 2017
e48086c
rustdoc: Fix implementors list javascript
ollie27 May 19, 2017
4cd838b
Normalize docs in windows::ffi and windows::fs
randomPoison May 19, 2017
41debc3
Try to optimise char patterns
nagisa May 15, 2017
b5acbd3
debuginfo: Generate unique DW_AT_names for compilation units to work …
michaelwoerister May 19, 2017
a892925
Fix doc test failure for OpenOptionsExt
randomPoison May 19, 2017
d7a5390
Rollup merge of #41870 - excaliburHisSheath:iss29367-windows-docs, r=…
Mark-Simulacrum May 19, 2017
d8d2db2
Rollup merge of #41910 - mersinvald:master, r=Mark-Simulacrum
Mark-Simulacrum May 19, 2017
04b0779
Rollup merge of #41958 - malbarbo:docker-share, r=alexcrichton
Mark-Simulacrum May 19, 2017
8292136
Rollup merge of #41971 - japaric:pre-link-args, r=alexcrichton
Mark-Simulacrum May 19, 2017
8b93680
Rollup merge of #42006 - jseyfried:fix_include_regression, r=nrc
Mark-Simulacrum May 19, 2017
862e7d4
Rollup merge of #42024 - citizen428:docs/update-exitstatus, r=stevekl…
Mark-Simulacrum May 19, 2017
db01c94
Rollup merge of #42037 - nagisa:charpat, r=sfackler
Mark-Simulacrum May 19, 2017
0011828
Rollup merge of #42056 - sylvestre:master, r=alexcrichton
Mark-Simulacrum May 19, 2017
abd1a00
Rollup merge of #42067 - Keruspe:master, r=alexcrichton
Mark-Simulacrum May 19, 2017
6a2bf05
Rollup merge of #42070 - tshepang:env-misc, r=BurntSushi
Mark-Simulacrum May 19, 2017
4c2273a
Rollup merge of #42079 - seeekr:patch-1, r=steveklabnik
Mark-Simulacrum May 19, 2017
f3b7b61
Rollup merge of #42080 - pravic:jquery-removal-fix, r=frewsxcv
Mark-Simulacrum May 19, 2017
3fb27a0
Rollup merge of #42082 - michaelwoerister:wider_def_path_hashes, r=eddyb
Mark-Simulacrum May 19, 2017
7812adf
Rollup merge of #42089 - nagisa:xpy-broke-on-py3-again⁈, r=alexcrichton
Mark-Simulacrum May 19, 2017
fd8ca3e
Rollup merge of #42092 - cuviper:args_os, r=Mark-Simulacrum
Mark-Simulacrum May 19, 2017
5ded76c
Rollup merge of #42096 - ollie27:rustdoc_js_impls, r=GuillaumeGomez
Mark-Simulacrum May 19, 2017
040cd6d
Rollup merge of #42100 - michaelwoerister:fix-osx-multi-cgu-debuginfo…
Mark-Simulacrum May 19, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix x.py
  • Loading branch information
nagisa committed May 18, 2017
commit c5163aadc5e599d45e9022a3d8df4815b6066bdc
7 changes: 4 additions & 3 deletions src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,13 +398,14 @@ def run(self, args, env=None, cwd=None):
sys.exit(ret)

def output(self, args, env=None, cwd=None):
default_encoding = sys.getdefaultencoding()
proc = subprocess.Popen(args, stdout=subprocess.PIPE, env=env, cwd=cwd)
(out, err) = proc.communicate()
ret = proc.wait()
if ret != 0:
print(out)
sys.exit(ret)
return out
return out.decode(default_encoding)

def build_triple(self):
default_encoding = sys.getdefaultencoding()
Expand Down Expand Up @@ -570,10 +571,10 @@ def update_submodules(self):

for submod in submodules:
path, status = submod
if path.endswith(b"llvm") and \
if path.endswith('llvm') and \
(self.get_toml('llvm-config') or self.get_mk('CFG_LLVM_ROOT')):
continue
if path.endswith(b"jemalloc") and \
if path.endswith('jemalloc') and \
(self.get_toml('jemalloc') or self.get_mk('CFG_JEMALLOC_ROOT')):
continue
submod_path = os.path.join(self.rust_root, path)
Expand Down