Skip to content
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

Rollup of 10 pull requests #37540

Merged
merged 22 commits into from
Nov 3, 2016
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5a2fb88
Prevent exhaustive matching of Ordering to allow for future extension
Amanieu Oct 22, 2016
07bff08
Copyediting on documentation for write! and writeln!
joshtriplett Oct 29, 2016
10ce90f
Fix armv7 autodetection
matwey Oct 30, 2016
9b81f3c
Add armv6l autodetection
matwey Oct 30, 2016
c8c6d2c
Use quieter test output when running tests on Travis CI.
frewsxcv Oct 30, 2016
07c8a25
Remove unused type aliases
sanxiyn Oct 31, 2016
b926e8d
Add missing space in mutable_transmutes lint
CryZe Oct 31, 2016
e3025a0
ICH: Hash expression spans if their source location is captured for p…
michaelwoerister Oct 31, 2016
6720e01
Add tracking issue number to Result::unwrap_or_default unstable annot…
Mark-Simulacrum Nov 1, 2016
a0e7e35
Improve "Doesn't live long enough" error
mikhail-m1 Oct 26, 2016
7d5b788
Elide lifetimes in DerefMut documentation
d-unsed Nov 1, 2016
0e391bf
ICH: Add test case for when overflow checks are disabled.
michaelwoerister Nov 2, 2016
d00e5e9
Rollup merge of #37351 - Amanieu:consume, r=alexcrichton
Nov 2, 2016
dbb2506
Rollup merge of #37405 - mikhail-m1:dnlle, r=jonathandturner
Nov 2, 2016
3752673
Rollup merge of #37473 - joshtriplett:doc-copyedit-write-writeln, r=a…
Nov 2, 2016
0a20ec3
Rollup merge of #37482 - matwey:configure-arm, r=alexcrichton
Nov 2, 2016
d2f4a9d
Rollup merge of #37488 - frewsxcv:quiet-travis, r=alexcrichton
Nov 2, 2016
b333860
Rollup merge of #37498 - sanxiyn:unused-type-alias, r=eddyb
Nov 2, 2016
62e026b
Rollup merge of #37502 - CryZe:patch-4, r=sfackler
Nov 2, 2016
27f41b7
Rollup merge of #37513 - michaelwoerister:hash-panic-spans, r=nikomat…
Nov 2, 2016
805aecc
Rollup merge of #37517 - Mark-Simulacrum:add-unwrap-default-tracking-…
Nov 2, 2016
0befab2
Rollup merge of #37523 - d-unseductable:deref_mut_lifetimes, r=bluss
Nov 2, 2016
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 armv7 autodetection
armv7l is armv7 architecture and CFG_CPUTYPE should be armv7 in order to end up
with armv7-unknown-linux-gnueabihf.mk rather than
arm-unknown-linux-gnueabihf.mk
  • Loading branch information
matwey committed Oct 30, 2016
commit 10ce90fca20fce776b8bdad504a5e3b915ded99f
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ case $CFG_CPUTYPE in
;;

armv7l)
CFG_CPUTYPE=arm
CFG_CPUTYPE=armv7
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
;;

Expand Down