Skip to content

Commit 4842e8c

Browse files
author
Keegan McAllister
committed
---
yaml --- r: 155501 b: refs/heads/try2 c: 9d60de9 h: refs/heads/master i: 155499: f3e0e5c v: v3
1 parent 2d27862 commit 4842e8c

File tree

97 files changed

+1407
-3290
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+1407
-3290
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: b7c002aac149618d4ef7e2ef5a1417c85631dddb
8+
refs/heads/try2: 9d60de93e2c5af1b69201b5e3bcf8943ae5df664
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/configure

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -453,12 +453,12 @@ valopt datadir "${CFG_PREFIX}/share" "install data"
453453
valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
454454
valopt mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
455455

456-
valopt release-channel "dev" "the name of the release channel to build"
456+
valopt release-channel "source" "the name of the release channel to build"
457457

458458
# On windows we just store the libraries in the bin directory because
459459
# there's no rpath. This is where the build system itself puts libraries;
460460
# --libdir is used to configure the installation directory.
461-
# FIXME: This needs to parameterized over target triples. Do it in platform.mk
461+
# FIXME: Thise needs to parameterized over target triples. Do it in platform.mk
462462
CFG_LIBDIR_RELATIVE=lib
463463
if [ "$CFG_OSTYPE" = "pc-mingw32" ] || [ "$CFG_OSTYPE" = "w64-mingw32" ]
464464
then
@@ -479,16 +479,16 @@ validate_opt
479479

480480
# Validate the release channel
481481
case "$CFG_RELEASE_CHANNEL" in
482-
(dev | nightly | beta | stable)
482+
(source | nightly | beta | stable)
483483
;;
484484
(*)
485-
err "release channel must be 'dev', 'nightly', 'beta' or 'stable'"
485+
err "release channel must be 'source', 'nightly', 'beta' or 'stable'"
486486
;;
487487
esac
488488

489489
# Continue supporting the old --enable-nightly flag to transition the bots
490490
# XXX Remove me
491-
if [ ! -z "$CFG_ENABLE_NIGHTLY" ]
491+
if [ $CFG_ENABLE_NIGHTLY -eq 1 ]
492492
then
493493
CFG_RELEASE_CHANNEL=nightly
494494
putvar CFG_RELEASE_CHANNEL

branches/try2/mk/main.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ ifeq ($(CFG_RELEASE_CHANNEL),nightly)
3535
CFG_RELEASE=$(CFG_RELEASE_NUM)-nightly
3636
CFG_PACKAGE_VERS=nightly
3737
endif
38-
ifeq ($(CFG_RELEASE_CHANNEL),dev)
39-
CFG_RELEASE=$(CFG_RELEASE_NUM)-dev
40-
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)-dev
38+
ifeq ($(CFG_RELEASE_CHANNEL),source)
39+
CFG_RELEASE=$(CFG_RELEASE_NUM)-pre
40+
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)-pre
4141
endif
4242

4343
# The name of the package to use for creating tarballs, installers etc.

branches/try2/mk/stage0.mk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
$(HBIN0_H_$(CFG_BUILD))/:
44
mkdir -p $@
55

6-
# On windows these two are the same, so cause a redifinition warning
7-
ifneq ($(HBIN0_H_$(CFG_BUILD)),$(HLIB0_H_$(CFG_BUILD)))
86
$(HLIB0_H_$(CFG_BUILD))/:
97
mkdir -p $@
10-
endif
118

129
$(SNAPSHOT_RUSTC_POST_CLEANUP): \
1310
$(S)src/snapshots.txt \

branches/try2/src/doc/guide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,6 @@ You can create an array with just square brackets:
15071507

15081508
```{rust}
15091509
let nums = [1i, 2i, 3i];
1510-
let nums = [1i, ..20]; // Shorthand for an array of 20 elements all initialized to 1
15111510
```
15121511

15131512
So what's the difference? An array has a fixed size, so you can't add or
@@ -4325,6 +4324,8 @@ and so we tell it that we want a vector of integers.
43254324
is one:
43264325

43274326
```{rust}
4327+
let one_to_one_hundred = range(0i, 100i);
4328+
43284329
let greater_than_forty_two = range(0i, 100i)
43294330
.find(|x| *x >= 42);
43304331

branches/try2/src/etc/licenseck.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
"test/bench/shootout-chameneos-redux.rs", # BSD
4747
"test/bench/shootout-fannkuch-redux.rs", # BSD
4848
"test/bench/shootout-fasta.rs", # BSD
49-
"test/bench/shootout-fasta-redux.rs", # BSD
5049
"test/bench/shootout-k-nucleotide.rs", # BSD
5150
"test/bench/shootout-mandelbrot.rs", # BSD
5251
"test/bench/shootout-meteor.rs", # BSD

branches/try2/src/etc/pkg/rust.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
SetupIconFile=rust-logo.ico
99
AppName=Rust
1010
AppVersion={#CFG_RELEASE}
11-
AppCopyright=Copyright (C) 2006-2014 Mozilla Foundation, MIT license
11+
AppCopyright=Copyright (C) 2006-2013 Mozilla Foundation, MIT license
1212
AppPublisher=Mozilla Foundation
1313
AppPublisherURL=http://www.rust-lang.org
1414
VersionInfoVersion={#CFG_VERSION_WIN}
@@ -43,7 +43,7 @@ Source: "tmp/dist/win/*.*" ; DestDir: "{app}"; Flags: ignoreversion recursesubdi
4343
[Code]
4444
const
4545
ModPathName = 'modifypath';
46-
ModPathType = 'system';
46+
ModPathType = 'user';
4747
4848
function ModPathDir(): TArrayOfString;
4949
begin

branches/try2/src/liballoc/boxed.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ pub trait BoxAny {
9696
/// `Err(Self)` if it isn't.
9797
#[unstable = "naming conventions around accessing innards may change"]
9898
fn downcast<T: 'static>(self) -> Result<Box<T>, Self>;
99+
100+
/// Deprecated; this method has been renamed to `downcast`.
101+
#[deprecated = "use downcast instead"]
102+
fn move<T: 'static>(self) -> Result<Box<T>, Self> {
103+
self.downcast::<T>()
104+
}
99105
}
100106

101107
#[stable]

branches/try2/src/liballoc/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use core::raw;
1616
#[inline]
1717
#[deprecated]
1818
pub fn get_box_size(body_size: uint, body_align: uint) -> uint {
19-
let header_size = mem::size_of::<raw::GcBox<()>>();
19+
let header_size = mem::size_of::<raw::Box<()>>();
2020
let total_size = align_to(header_size, body_align) + body_size;
2121
total_size
2222
}

0 commit comments

Comments
 (0)