Skip to content

Commit 942883b

Browse files
committed
---
yaml --- r: 190411 b: refs/heads/snap-stage3 c: 811c575 h: refs/heads/master i: 190409: 6019d2d 190407: 0602c7b v: v3
1 parent 3e25144 commit 942883b

Some content is hidden

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

46 files changed

+956
-503
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 857ac28867722111249b5c3ef68e32499bd11ea0
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: ae7dce674e52f43d064f90b8415311406a9714d5
4+
refs/heads/snap-stage3: 811c575b3c08f839c1cf86a7e9f912f6dff637d4
55
refs/heads/try: 1c28ab65017d74fc13d003f7c7a73d1a48e5406f
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/configure

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,10 @@ case $CFG_OSTYPE in
430430
CFG_CPUTYPE=x86_64
431431
;;
432432

433+
# Win 8 # uname -s on 64-bit cygwin does not contain WOW64, so simply use uname -m to detect arch (works in my install)
434+
CYGWIN_NT-6.3)
435+
CFG_OSTYPE=pc-windows-gnu
436+
;;
433437
# We do not detect other OS such as XP/2003 using 64 bit using uname.
434438
# If we want to in the future, we will need to use Cygwin - Chuck's csih helper in /usr/lib/csih/winProductName.exe or alternative.
435439
*)

branches/snap-stage3/src/doc/reference.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2429,6 +2429,10 @@ The currently implemented features of the reference compiler are:
24292429
so that new attributes can be added in a bacwards compatible
24302430
manner (RFC 572).
24312431

2432+
* `custom_derive` - Allows the use of `#[derive(Foo,Bar)]` as sugar for
2433+
`#[derive_Foo] #[derive_Bar]`, which can be user-defined syntax
2434+
extensions.
2435+
24322436
* `intrinsics` - Allows use of the "rust-intrinsics" ABI. Compiler intrinsics
24332437
are inherently unstable and no promise about them is made.
24342438

0 commit comments

Comments
 (0)