Skip to content

Commit db73298

Browse files
committed
---
yaml --- r: 235327 b: refs/heads/stable c: 1239e34 h: refs/heads/master i: 235325: 3b3e883 235323: 490b1b6 235319: 9915640 235311: 02ab304 235295: f169887 235263: e8a8b14 v: v3
1 parent b8c8da0 commit db73298

File tree

29 files changed

+774
-1196
lines changed

29 files changed

+774
-1196
lines changed

[refs]

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

branches/stable/mk/rustllvm.mk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ LLVM_EXTRA_INCDIRS_$(1)= $$(call CFG_CC_INCLUDE_$(1),$(S)src/llvm/include) \
2424
endif
2525

2626
RUSTLLVM_OBJS_CS_$(1) := $$(addprefix rustllvm/, \
27-
ExecutionEngineWrapper.cpp RustWrapper.cpp PassWrapper.cpp \
28-
ArchiveWrapper.cpp)
27+
ExecutionEngineWrapper.cpp RustWrapper.cpp PassWrapper.cpp)
2928

3029
RUSTLLVM_INCS_$(1) = $$(LLVM_EXTRA_INCDIRS_$(1)) \
3130
$$(call CFG_CC_INCLUDE_$(1),$$(LLVM_INCDIR_$(1))) \

branches/stable/src/liblibc/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4978,8 +4978,6 @@ pub mod consts {
49784978
pub const F_GETFL : c_int = 3;
49794979
pub const F_SETFL : c_int = 4;
49804980

4981-
pub const O_ACCMODE : c_int = 3;
4982-
49834981
pub const SIGTRAP : c_int = 5;
49844982
pub const SIG_IGN: size_t = 1;
49854983

@@ -5132,7 +5130,6 @@ pub mod consts {
51325130
pub const O_DSYNC : c_int = 4194304;
51335131
pub const O_SYNC : c_int = 128;
51345132
pub const O_NONBLOCK : c_int = 4;
5135-
pub const F_GETPATH : c_int = 50;
51365133
pub const F_FULLFSYNC : c_int = 51;
51375134

51385135
pub const MAP_COPY : c_int = 0x0002;
@@ -5154,8 +5151,6 @@ pub mod consts {
51545151
pub const SO_DONTTRUNC: c_int = 0x2000;
51555152
pub const SO_WANTMORE: c_int = 0x4000;
51565153
pub const SO_WANTOOBFLAG: c_int = 0x8000;
5157-
5158-
pub const PATH_MAX: c_int = 1024;
51595154
}
51605155
pub mod sysconf {
51615156
use types::os::arch::c95::c_int;

branches/stable/src/librustc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ pub mod diagnostics;
9999

100100
pub mod back {
101101
pub use rustc_back::abi;
102+
pub use rustc_back::archive;
102103
pub use rustc_back::arm;
103104
pub use rustc_back::mips;
104105
pub use rustc_back::mipsel;

branches/stable/src/librustc/metadata/loader.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@
212212
//! no means all of the necessary details. Take a look at the rest of
213213
//! metadata::loader or metadata::creader for all the juicy details!
214214
215+
use back::archive::METADATA_FILENAME;
215216
use back::svh::Svh;
216217
use session::Session;
217218
use session::search_paths::PathKind;
@@ -279,8 +280,6 @@ pub struct CratePaths {
279280
pub rlib: Option<PathBuf>
280281
}
281282

282-
pub const METADATA_FILENAME: &'static str = "rust.metadata.bin";
283-
284283
impl CratePaths {
285284
fn paths(&self) -> Vec<PathBuf> {
286285
match (&self.dylib, &self.rlib) {

0 commit comments

Comments
 (0)