From 54587bdccb7b6771cfc704a30fc0ef2c65824a15 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 16 Mar 2011 14:58:02 -0700 Subject: Switch all vases of vec += elt to vec += vec. Prohibit former in rustboot. Tweak std lib vec fns in process. --- src/Makefile | 1 - 1 file changed, 1 deletion(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 67a8743e..d063fb05 100644 --- a/src/Makefile +++ b/src/Makefile @@ -469,7 +469,6 @@ TEST_XFAILS_RUSTC := $(addprefix test/run-pass/, \ acyclic-unwind.rs \ alt-pattern-drop.rs \ alt-type-simple.rs \ - append-units.rs \ basic-1.rs \ basic-2.rs \ basic.rs \ -- cgit v1.2.3 From 85c073dd3e4259b5f0c2fe5c217c3561bf0ab7b2 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 16 Mar 2011 15:21:45 -0700 Subject: Disable built-in rules in makefile, speed up win32 build. --- src/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index d063fb05..99ef8adc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,3 +1,13 @@ +# Delete the built-in rules. +# This speeds builds up substantially on win32, maybe elsewhere. + +.SUFFIXES: +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% + ###################################################################### # Auto-configuration ###################################################################### -- cgit v1.2.3 From ea7197e2cf921211fb3b82ad45452c2095f5a589 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 16 Mar 2011 18:40:51 -0700 Subject: rustc: Add str_from_cstr() and str_from_buf() functions to the standard library, as well as a test case --- src/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 99ef8adc..16437310 100644 --- a/src/Makefile +++ b/src/Makefile @@ -498,6 +498,7 @@ TEST_XFAILS_RUSTC := $(addprefix test/run-pass/, \ lib-sha1.rs \ lib-sort.rs \ lib-str.rs \ + lib-str-buf.rs \ lib-task.rs \ lib-uint.rs \ lib-vec-str-conversions.rs \ -- cgit v1.2.3 From 2ef9c01ffcd160937ddccc91a6f5e9fa24f22fd4 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Fri, 18 Mar 2011 11:49:06 -0700 Subject: rustc: Implement "mutable?". Add a test case and XFAIL it in rustboot for now. --- src/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 16437310..630babf3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -456,6 +456,7 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \ test/run-pass/iter-ret.rs \ test/run-pass/leak-tag-copy.rs \ test/run-pass/lib-io.rs \ + test/run-pass/maybe-mutable.rs \ test/run-pass/mlist-cycle.rs \ test/run-pass/obj-as.rs \ test/run-pass/seq-compare.rs \ -- cgit v1.2.3