Eduard Burtescu
07503dfb8b
Register snapshots (2015-05-24 ba0e1cd
).
2015-05-27 11:19:02 +03:00
Tamir Duberstein
69abc12b00
Register new snapshots
2015-04-28 17:23:45 -07:00
Dave Huseby
f0a9a0ca7b
manually adding the last two bitrig snapshots
2015-04-01 13:47:09 -07:00
Alex Crichton
94137a37e9
Test fixes and rebase conflicts, round 1
2015-03-31 15:53:25 -07:00
Alex Crichton
36ef29abf7
Register new snapshots
2015-03-26 09:57:05 -07:00
Dave Huseby
3a0c15f3cf
adding lastest Bitrig snapshot by hand
2015-03-23 15:58:44 -07:00
Alex Crichton
fccf5a0005
Register new snapshots
2015-03-18 16:32:32 -07:00
Dave Huseby
33751ff8a7
adding latest bitrig snapshot manually
2015-03-10 23:39:50 -07:00
Manish Goregaokar
f81f8d81d3
Register new snapshots ( 270a677
)
2015-03-08 00:36:56 +05:30
Dave Huseby
07e51ec7e0
adding bitrig snapshot to snapshots file
2015-03-05 12:38:35 +05:30
Flavio Percoco
9d0d72345d
register snapshot 880fb89
2015-02-27 01:48:49 +01:00
Alex Crichton
6686f7aa47
Register new snapshots
2015-02-20 22:17:17 -08:00
Alex Crichton
47f91a9484
Register new snapshots
2015-02-17 22:04:31 -08:00
Jorge Aparicio
92f11e938a
register snapshots
2015-02-04 20:06:12 -05:00
Jorge Aparicio
134cf707df
register snapshots
2015-02-02 13:38:32 -05:00
Brian Anderson
03b9995be9
Register snaps
2015-01-29 15:02:00 -08:00
Jorge Aparicio
92e966e099
register snaphots
2015-01-29 07:49:02 -05:00
Flavio Percoco
cd631c6914
Register snapshot for 9006c3c
2015-01-20 22:15:44 +01:00
Eduard Burtescu
89b80faa8e
Register new snapshots.
2015-01-17 16:37:34 -08:00
Alex Crichton
b53e9f17d3
Register new snapshots
2015-01-07 10:27:52 -08:00
Alex Crichton
e2f97f51ad
Register new snapshots
...
Conflicts:
src/librbml/lib.rs
src/libserialize/json_stage0.rs
src/libserialize/serialize_stage0.rs
src/libsyntax/ast.rs
src/libsyntax/ext/deriving/generic/mod.rs
src/libsyntax/parse/token.rs
2015-01-06 15:24:24 -08:00
Jorge Aparicio
a291a80fbe
register snapshot
2015-01-05 17:22:11 -05:00
Jorge Aparicio
6002c13f9b
Register new snapshots
2015-01-03 09:34:05 -05:00
Alex Crichton
167683da23
Register new snapshots
2015-01-02 12:05:56 -05:00
Alex Crichton
262c1efe63
Register new snapshots
2014-12-30 15:04:43 -08:00
Alex Crichton
fb7c08876e
Test fixes and rebase conflicts
2014-12-21 13:49:04 -08:00
Flavio Percoco
1c80446d1b
Create a snapshot for 8443b09
2014-12-21 09:27:37 -08:00
Flavio Percoco
8a5698834e
Create a snapshot on top of 1b97cd3
2014-12-16 14:39:18 +01:00
Alex Crichton
52edb2ecc9
Register new snapshots
2014-12-11 11:30:38 -08:00
Alex Crichton
456ffcdc56
Revert "Register new snapshots"
...
This reverts commit 9b443289cf
.
2014-12-08 14:30:13 -08:00
Alex Crichton
9b443289cf
Register new snapshots
2014-12-05 15:39:26 -08:00
Alex Crichton
1684419897
Register new snapshots
2014-11-21 14:15:33 -08:00
Alex Crichton
e3c658f649
Register new snapshots
2014-11-18 11:35:22 -08:00
Alex Crichton
065e39bb2f
Register new snapshots
2014-11-12 12:17:55 -08:00
Eduard Burtescu
56dbf3d122
Register snapshots.
2014-11-05 12:55:58 +02:00
Alex Crichton
398b28722d
Register new snapshots
...
This in theory enables uncommenting IndexMut implementations, but upon doing so
the compiler immediately segfaulted in stage1, so I'll leave those to a later
time.
2014-10-23 09:38:37 -07:00
Alex Crichton
dae48a07f3
Register new snapshots
...
Also convert a number of `static mut` to just a plain old `static` and remove
some unsafe blocks.
2014-10-10 22:09:49 -07:00
Björn Steinbrink
2d93a0406b
Register new snapshots
2014-10-04 15:44:50 +02:00
Steven Fackler
fa419d3d21
Register new snapshots
2014-09-28 19:28:48 -07:00
Alex Crichton
a59f3f21f2
Register new snapshots
2014-09-23 18:21:28 -07:00
Alex Crichton
c4a1c3800b
Register new snapshots
...
This is the first linux snapshot created on our new CentOS 5.10 builders.
Closes #9545
2014-09-16 18:16:38 -07:00
Alex Crichton
ba0c100f3b
Change the last linux 64-bit snapshot
...
I'm rotating in some CentOS 5.10 bots so we *actually* build on Linux 2.6.18
like we advertise doing so. Currently the snapshots are incompatible with CentOS
5.10 due to snapshots requiring glibc 2.6 and CentOS 5.10 having glibc 2.5.
It turns out that rustc only requires *one* symbol from glibc 2.6, which is
`futimens`. The rust distribution itself does not use this symbol, but LLVM
conditionally detects it and then uses it. This symbol isn't even called as part
of the compilation process, so we don't even need it!
The new snapshot was generated following these instructions [1]:
1. Download the current x86_64 linux snapshot and unpack it.
2. Open the rustc binary in a hex editor.
3. Change the linkage against glibc 2.6 from strong to *weak*
4. Write changes and re-run src/etc/make-snapshot.py
5. Upload new tarball to S3
On CentOS 5.10 a warning is printed each time the snapshot runs that the symbol
cannot be found (anyone with glibc 2.6+ does not have this warning printed). The
key part is that we can *bootstrap* on CentOS 5.10 at this point. The next
snapshot will be naturally compatible with glibc 2.3 (even older!) and will not
need to be manually edited.
[1]: http://jamesbond3142.no-ip.org/wiki/wiki.cgi/NewAppsOnOldGlibc
2014-09-15 18:14:26 -07:00
Brian Anderson
38e7e4bd9c
Register snapshots
2014-09-10 18:33:54 -07:00
Huon Wilson
524e1b20af
Register snapshots.
...
Closes #16880 .
2014-09-07 20:42:14 +10:00
Alex Crichton
d15d559739
Register new snapshots
2014-08-29 14:33:08 -07:00
Patrick Walton
63016dc474
snapshots: Register new snapshots.
2014-08-18 06:35:42 -07:00
Alex Crichton
8f16aa748c
Register new snapshots
...
Hopefully this will fix #16489 !
2014-08-15 22:16:10 -07:00
Niko Matsakis
4fd797e757
Register new snapshot 12e0f72
2014-08-08 07:55:00 -04:00
Alex Crichton
707cf47ac8
Register new snapshots
2014-07-19 20:38:00 -07:00
Alex Crichton
0c71e0c596
Register new snapshots
...
Closes #15544
2014-07-09 10:57:58 -07:00