Skip to content

Rollup of 13 pull requests #58413

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

Closed
wants to merge 38 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
5a7cd84
Speed up the fast path for assert_eq! and assert_ne!
dotdash Jan 21, 2019
f841ff4
Stabilize the time_checked_add feature
faern Jan 31, 2019
2f2d495
Simplify lambdas
faern Jan 31, 2019
346dc37
fix str mutating through a ptr derived from &self
RalfJung Feb 5, 2019
113b7f7
allow shorthand syntax for deprecation reason
euclio Feb 4, 2019
703540d
Add specific error for unstable const fn features
varkor Feb 5, 2019
5a16a25
Update const fn tests
varkor Feb 5, 2019
8a7df4f
Fix documentation typo
varkor Feb 5, 2019
13bbba2
remove now-unneeded raw ptr casts
RalfJung Feb 6, 2019
a996f2c
add tracking issue
RalfJung Feb 6, 2019
66c894e
also fix bad use of shared ref in split_at_mut
RalfJung Feb 7, 2019
f06af1f
impl iter_sources() and iter_chain() for dyn Error
haraldh Feb 7, 2019
3a1a704
cleanup: rename node_id_to_type(_opt)
ljedrz Feb 4, 2019
eb669b3
cleanup: remove hir_path_str
ljedrz Feb 7, 2019
aafbf74
Disallow `auto` trait alias syntax.
alexreg Feb 12, 2019
b284c8d
Doc rewording
king6cong Jan 17, 2019
04f425d
Stabilize linker-plugin based LTO.
michaelwoerister Feb 1, 2019
370f1f2
Added tests.
alexreg Feb 12, 2019
8b21a55
use Ubuntu keyserver for CloudABI ports
euclio Feb 12, 2019
3733b32
Add documentation about -Clinker-plugin-lto to rustc book.
michaelwoerister Feb 12, 2019
1431c21
Remove some dead code from libcore
gnzlbg Feb 12, 2019
3216c76
Rename rustc_errors dependency in rust 2018 crates
taiki-e Feb 7, 2019
c360ba2
Cleanup imports
taiki-e Feb 9, 2019
c08b5ca
Fix rebase fail
taiki-e Feb 10, 2019
3a9d171
Fix some rebasing fallout regarding xLTO.
michaelwoerister Feb 12, 2019
3f30ed9
Rollup merge of #57693 - king6cong:word, r=Centril
Centril Feb 13, 2019
fa29099
Rollup merge of #57815 - dotdash:asserts, r=sfackler
Centril Feb 13, 2019
48ba561
Rollup merge of #58034 - faern:stabilize-time-checked-add, r=alexcric…
Centril Feb 13, 2019
76b6bda
Rollup merge of #58057 - michaelwoerister:stabilize-xlto, r=alexcrichton
Centril Feb 13, 2019
f6da289
Rollup merge of #58137 - ljedrz:cleanup_node_id_to_type, r=estebank
Centril Feb 13, 2019
4e68da2
Rollup merge of #58166 - euclio:deprecation-shorthand, r=petrochenkov
Centril Feb 13, 2019
937838f
Rollup merge of #58196 - varkor:const-fn-feature-gate-error, r=oli-obk
Centril Feb 13, 2019
414f7ec
Rollup merge of #58200 - RalfJung:str-as-mut-ptr, r=SimonSapin
Centril Feb 13, 2019
55bc4f6
Rollup merge of #58273 - taiki-e:rename-dependency, r=matthewjasper
Centril Feb 13, 2019
41488c8
Rollup merge of #58289 - haraldh:master, r=sfackler
Centril Feb 13, 2019
858258a
Rollup merge of #58387 - alexreg:fix-trait-alias-2, r=centril
Centril Feb 13, 2019
6f50834
Rollup merge of #58404 - euclio:cloudabi-keyserver, r=alexcrichton
Centril Feb 13, 2019
3883319
Rollup merge of #58405 - gnzlbg:remove_unused_macros, r=alexcrichton
Centril Feb 13, 2019
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
use Ubuntu keyserver for CloudABI ports
The Ubuntu keyserver is more reliable than the MIT PGP server, which is
prone to going down. This commit also explicitly uses port 80 on the
keyserver for reasons outlined in #57844.
  • Loading branch information
euclio committed Feb 12, 2019
commit 8b21a55b965aab6e5110fdb1d27c43d9212bd85f
9 changes: 4 additions & 5 deletions src/ci/docker/dist-various-2/build-cloudabi-toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ ln -s ../lib/llvm-5.0/bin/lld /usr/bin/${target}-ld
ln -s ../../${target} /usr/lib/llvm-5.0/${target}

# Install the C++ runtime libraries from CloudABI Ports.
echo deb https://nuxi.nl/distfiles/cloudabi-ports/debian/ cloudabi cloudabi > \
/etc/apt/sources.list.d/cloudabi.list
curl 'https://pgp.mit.edu/pks/lookup?op=get&search=0x0DA51B8531344B15' | \
apt-key add -
apt-key adv --batch --yes --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0DA51B8531344B15
add-apt-repository -y 'deb https://nuxi.nl/distfiles/cloudabi-ports/debian/ cloudabi cloudabi'

apt-get update
apt-get install -y $(echo ${target} | sed -e s/_/-/g)-cxx-runtime
apt-get install -y "${target//_/-}-cxx-runtime"