Skip to content

Commit bb2ee23

Browse files
committed
---
yaml --- r: 274421 b: refs/heads/stable c: 7a69ee0 h: refs/heads/master i: 274419: 7db348b
1 parent 8e07872 commit bb2ee23

File tree

14 files changed

+12
-127
lines changed

14 files changed

+12
-127
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: c0221c8897db309a79990367476177b1230bb264
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 094c5b0d61a0fb19a1cb94dddd6f59a975089b4b
32+
refs/heads/stable: 7a69ee0c4806d30bbda5cc0277f3d0f38c3266c8
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ do
11641164
;;
11651165

11661166

1167-
x86_64-*-musl)
1167+
*-musl)
11681168
if [ ! -f $CFG_MUSL_ROOT/lib/libc.a ]
11691169
then
11701170
err "musl libc $CFG_MUSL_ROOT/lib/libc.a not found"

branches/stable/mk/cfg/armv7-unknown-linux-gnueabihf.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ CFG_LIB_NAME_armv7-unknown-linux-gnueabihf=lib$(1).so
88
CFG_STATIC_LIB_NAME_armv7-unknown-linux-gnueabihf=lib$(1).a
99
CFG_LIB_GLOB_armv7-unknown-linux-gnueabihf=lib$(1)-*.so
1010
CFG_LIB_DSYM_GLOB_armv7-unknown-linux-gnueabihf=lib$(1)-*.dylib.dSYM
11-
CFG_JEMALLOC_CFLAGS_armv7-unknown-linux-gnueabihf := -D__arm__ $(CFLAGS) -march=armv7-a
12-
CFG_GCCISH_CFLAGS_armv7-unknown-linux-gnueabihf := -Wall -g -fPIC -D__arm__ $(CFLAGS) -march=armv7-a
11+
CFG_JEMALLOC_CFLAGS_armv7-unknown-linux-gnueabihf := -D__arm__ $(CFLAGS) -march=armv7
12+
CFG_GCCISH_CFLAGS_armv7-unknown-linux-gnueabihf := -Wall -g -fPIC -D__arm__ $(CFLAGS) -march=armv7
1313
CFG_GCCISH_CXXFLAGS_armv7-unknown-linux-gnueabihf := -fno-rtti $(CXXFLAGS)
1414
CFG_GCCISH_LINK_FLAGS_armv7-unknown-linux-gnueabihf := -shared -fPIC -g
1515
CFG_GCCISH_DEF_FLAG_armv7-unknown-linux-gnueabihf := -Wl,--export-dynamic,--dynamic-list=

branches/stable/mk/cfg/mips-unknown-linux-musl.mk

Lines changed: 0 additions & 24 deletions
This file was deleted.

branches/stable/mk/cfg/mipsel-unknown-linux-musl.mk

Lines changed: 0 additions & 24 deletions
This file was deleted.

branches/stable/src/liblibc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 30f70baa6cc1ba3ddebb55b988fafbad0c0cc810
1+
Subproject commit 91ff43c736de664f8d3cd351e148c09cdea6731e

branches/stable/src/librustc_back/target/armv7_unknown_linux_gnueabihf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub fn target() -> Target {
2323

2424
options: TargetOptions {
2525
features: "+v7,+vfp2,+neon".to_string(),
26-
cpu: "cortex-a8".to_string(),
26+
cpu: "cortex-a7".to_string(),
2727
.. base
2828
}
2929
}

branches/stable/src/librustc_back/target/mips_unknown_linux_musl.rs

Lines changed: 0 additions & 28 deletions
This file was deleted.

branches/stable/src/librustc_back/target/mipsel_unknown_linux_musl.rs

Lines changed: 0 additions & 28 deletions
This file was deleted.

branches/stable/src/librustc_back/target/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,8 +420,6 @@ impl Target {
420420
armv7_unknown_linux_gnueabihf,
421421
aarch64_unknown_linux_gnu,
422422
x86_64_unknown_linux_musl,
423-
mips_unknown_linux_musl,
424-
mipsel_unknown_linux_musl,
425423

426424
i686_linux_android,
427425
arm_linux_androideabi,

branches/stable/src/librustc_resolve/resolve_imports.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -798,9 +798,6 @@ impl<'a, 'b:'a, 'tcx:'b> ImportResolver<'a, 'b, 'tcx> {
798798
dest_import_resolution.is_public = is_public;
799799
self.add_export(module_, name, &dest_import_resolution);
800800
}
801-
} else {
802-
// FIXME #30159: This is required for backwards compatability.
803-
dest_import_resolution.is_public |= is_public;
804801
}
805802

806803
self.check_for_conflicts_between_imports_and_items(module_,

branches/stable/src/libstd/os/linux/raw.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -93,20 +93,11 @@ mod arch {
9393
use os::raw::{c_long, c_ulong};
9494
use os::unix::raw::{gid_t, uid_t};
9595

96-
#[cfg(target_env = "musl")]
97-
#[stable(feature = "raw_ext", since = "1.1.0")] pub type blkcnt_t = i64;
98-
#[cfg(not(target_env = "musl"))]
9996
#[stable(feature = "raw_ext", since = "1.1.0")] pub type blkcnt_t = i32;
10097
#[stable(feature = "raw_ext", since = "1.1.0")] pub type blksize_t = i32;
101-
#[cfg(target_env = "musl")]
102-
#[stable(feature = "raw_ext", since = "1.1.0")] pub type ino_t = u64;
103-
#[cfg(not(target_env = "musl"))]
10498
#[stable(feature = "raw_ext", since = "1.1.0")] pub type ino_t = u32;
10599
#[stable(feature = "raw_ext", since = "1.1.0")] pub type nlink_t = u32;
106-
#[cfg(target_env = "musl")]
107100
#[stable(feature = "raw_ext", since = "1.1.0")] pub type off_t = i32;
108-
#[cfg(not(target_env = "musl"))]
109-
#[stable(feature = "raw_ext", since = "1.1.0")] pub type off_t = i64;
110101
#[stable(feature = "raw_ext", since = "1.1.0")] pub type time_t = i32;
111102

112103
#[repr(C)]

branches/stable/src/libstd/sys/common/libunwind.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,9 @@ pub type _Unwind_Exception_Cleanup_Fn =
101101
exception: *mut _Unwind_Exception);
102102

103103
#[cfg_attr(any(all(target_os = "linux", not(target_env = "musl")),
104-
target_os = "freebsd",
105-
all(target_os = "linux", target_env = "musl", not(target_arch = "x86_64"))),
104+
target_os = "freebsd"),
106105
link(name = "gcc_s"))]
107-
#[cfg_attr(all(target_os = "linux", target_env = "musl", target_arch = "x86_64", not(test)),
106+
#[cfg_attr(all(target_os = "linux", target_env = "musl", not(test)),
108107
link(name = "unwind", kind = "static"))]
109108
#[cfg_attr(any(target_os = "android", target_os = "openbsd"),
110109
link(name = "gcc"))]

branches/stable/src/test/compile-fail/shadowed-use-visibility.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ mod foo {
1717

1818
mod bar {
1919
use foo::bar::f as g; //~ ERROR unresolved import
20+
21+
use foo as f;
22+
pub use foo::*;
2023
}
2124

25+
use bar::f::f; //~ ERROR unresolved import
2226
fn main() {}

0 commit comments

Comments
 (0)