Skip to content

Commit 74f1942

Browse files
author
Zooko Wilcox-O'Hearn
committed
---
yaml --- r: 152830 b: refs/heads/try2 c: e3050ff h: refs/heads/master v: v3
1 parent 19fc9b5 commit 74f1942

File tree

1,994 files changed

+48570
-75163
lines changed

Some content is hidden

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

1,994 files changed

+48570
-75163
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: 7a93beef7f692b34168ad69633f56483d38ad8fc
8+
refs/heads/try2: e3050ffa526a1e4ada4f963ab11e1d3ea7802edb
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ config.mk
6060
/rt/
6161
/rustllvm/
6262
/test/
63+
/build
6364
/inst/
6465
/mingw-build/
6566
src/.DS_Store
@@ -84,7 +85,7 @@ config.stamp
8485
.DS_Store
8586
src/etc/dl
8687
.settings/
87-
/build
88+
build/
8889
i686-pc-mingw32/
8990
src/librustc/lib/llvmdeps.rs
9091
*.pot

branches/try2/.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ before_script:
2727
- ln -nsf /usr/bin/llvm-dis-$LLVM_VERSION local-llvm/bin/llvm-dis
2828
- ln -nsf /usr/bin/llc-$LLVM_VERSION local-llvm/bin/llc
2929
- ln -nsf /usr/include/llvm-$LLVM_VERSION local-llvm/include
30-
- ./configure --disable-optimize-tests --llvm-root=`pwd`/local-llvm
31-
--enable-fast-make --enable-clang
30+
- ./configure --disable-optimize-tests --llvm-root=`pwd`/local-llvm --enable-fast-make --enable-clang
3231

3332
# Tidy everything up first, then build a few things, and then run a few tests.
3433
# Note that this is meant to run in a "fairly small" amount of time, so this
@@ -41,7 +40,7 @@ script: |
4140
if [[ $LLVM_VERSION != '3.4' ]]; then exit 0; fi
4241
fi &&
4342
make tidy &&
44-
travis_wait make -j4 rustc-stage1 &&
43+
make -j4 rustc-stage1 &&
4544
make check-stage1-std check-stage1-rpass check-stage1-cfail check-stage1-rfail check-stage1-doc
4645
4746
env:

branches/try2/AUTHORS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ Rust was written by these fine people:
33
Aaron Laursen <aaronlaursen@gmail.com>
44
Aaron Todd <github@opprobrio.us>
55
Adam Bozanich <adam.boz@gmail.com>
6-
Adolfo Ochagavía <aochagavia92@gmail.com>
76
Adrien Tétar <adri-from-59@hotmail.fr>
87
Alan Andrade <alan.andradec@gmail.com>
98
Aleksander Balicki <balicki.aleksander@gmail.com>
@@ -26,6 +25,7 @@ Andrew Chin <achin@eminence32.net>
2625
Andrew Dunham <andrew@du.nham.ca>
2726
Andrew Paseltiner <apaseltiner@gmail.com>
2827
Anthony Juckel <ajuckel@gmail.com>
28+
aochagavia <aochagavia92@gmail.com>
2929
Arcterus <Arcterus@mail.com>
3030
Arkaitz Jimenez <arkaitzj@gmail.com>
3131
Armin Ronacher <armin.ronacher@active-4.com>

branches/try2/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
If you're just reporting a bug, please see:
44

5-
http://doc.rust-lang.org/complement-bugreport.html
5+
http://static.rust-lang.org/doc/master/complement-bugreport.html
66

77
## Pull request procedure
88

@@ -20,13 +20,13 @@ please do two things:
2020

2121
Pull requests will be treated as "review requests", and we will give
2222
feedback we expect to see corrected on
23-
[style](https://github.com/rust-lang/rust/wiki/Note-style-guide) and
23+
[style](https://github.com/mozilla/rust/wiki/Note-style-guide) and
2424
substance before pulling. Changes contributed via pull request should
2525
focus on a single issue at a time, like any other. We will not accept
2626
pull-requests that try to "sneak" unrelated changes in.
2727

2828
Normally, all pull requests must include regression tests (see
29-
[Note-testsuite](https://github.com/rust-lang/rust/wiki/Note-testsuite))
29+
[Note-testsuite](https://github.com/mozilla/rust/wiki/Note-testsuite))
3030
that test your change. Occasionally, a change will be very difficult
3131
to test for. In those cases, please include a note in your commit
3232
message explaining why.
@@ -41,4 +41,4 @@ example, if it's 2014, and you change a Rust file that was created in
4141
```
4242

4343
For more details, please refer to
44-
[Note-development-policy](https://github.com/rust-lang/rust/wiki/Note-development-policy).
44+
[Note-development-policy](https://github.com/mozilla/rust/wiki/Note-development-policy).

branches/try2/Makefile.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
#
6969
# * `TESTNAME=...` - Specify the name of tests to run
7070
# * `CHECK_IGNORED=1` - Run normally-ignored tests
71-
# * `PLEASE_BENCH=1` - Run crate benchmarks (enable `--bench` flag)
71+
# * `NO_BENCH=1` - Don't run crate benchmarks (disable `--bench` flag)
7272
#
7373
# * `CFG_ENABLE_VALGRIND=1` - Run tests under valgrind
7474
# * `VALGRIND_COMPILE=1` - Run the compiler itself under valgrind
@@ -98,8 +98,8 @@
9898
# This is hardly all there is to know of The Rust Build System's
9999
# mysteries. The tale continues on the wiki[1][2].
100100
#
101-
# [1]: https://github.com/rust-lang/rust/wiki/Note-build-system
102-
# [2]: https://github.com/rust-lang/rust/wiki/Note-testsuite
101+
# [1]: https://github.com/mozilla/rust/wiki/Note-build-system
102+
# [2]: https://github.com/mozilla/rust/wiki/Note-testsuite
103103
#
104104
# If you really feel like getting your hands dirty, then:
105105
#

branches/try2/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ documentation.
1313
> [getting started][wiki-start] notes on the wiki.
1414
1515
[installer]: http://www.rust-lang.org/install.html
16-
[tutorial]: http://doc.rust-lang.org/tutorial.html
17-
[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust
18-
[win-wiki]: https://github.com/rust-lang/rust/wiki/Using-Rust-on-Windows
16+
[tutorial]: http://static.rust-lang.org/doc/tutorial.html
17+
[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
18+
[win-wiki]: https://github.com/mozilla/rust/wiki/Using-Rust-on-Windows
1919

2020
## Building from Source
2121

@@ -38,7 +38,7 @@ documentation.
3838

3939
Or to build from the [repo] do:
4040

41-
$ git clone https://github.com/rust-lang/rust.git
41+
$ git clone https://github.com/mozilla/rust.git
4242
$ cd rust
4343

4444
Now that you have Rust's source code, you can configure and build it:
@@ -58,9 +58,9 @@ documentation.
5858
3. Read the [tutorial].
5959
4. Enjoy!
6060

61-
[repo]: https://github.com/rust-lang/rust
61+
[repo]: https://github.com/mozilla/rust
6262
[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz
63-
[tutorial]: http://doc.rust-lang.org/tutorial.html
63+
[tutorial]: http://static.rust-lang.org/doc/master/tutorial.html
6464

6565
## Notes
6666

@@ -83,7 +83,7 @@ swap, it will take a very long time to build.
8383

8484
There is a lot more documentation in the [wiki].
8585

86-
[wiki]: https://github.com/rust-lang/rust/wiki
86+
[wiki]: https://github.com/mozilla/rust/wiki
8787

8888
## License
8989

0 commit comments

Comments
 (0)