Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as per #3543 #3672

Closed
wants to merge 387 commits into from

Conversation

dbp
Copy link
Contributor

@dbp dbp commented Oct 6, 2012

This should not land till after 0.4 (which may have already happened?). It moves src/cargo, src/fuzzer, and src/rustdoc to src/lib*, and creates a generic driver in driver/driver.rs. There are lib make targets, and bin targets that set a #[cfg] setting and use the driver as main.

Note that this is the first time for me working with Rust's makefile, so if I did anything silly, let me know and I'll fix it.

graydon and others added 30 commits October 10, 2012 17:18
DebugFlag is conditionally exported by LLVM in llvm/Support/Debug.h
in-between an #ifndef NDEBUG block; RustWrapper should not
unconditionally use it. This closes rust-lang#3701.

Signed-off-by: Luca Bruno <lucab@debian.org>
brson and others added 21 commits October 20, 2012 17:50
Talk about ends, rather than means, in macro tutorial introduction.
Change ast::ty_param_bound so that all ty param bounds are represented
as traits, with no special cases for Copy/Send/Owned/Const.
typeck::collect generates the special cases.

A consequence of this is that code using the #[no_core] attribute
can't use the Copy kind/trait. Probably not a big deal?

As a side effect, any user-defined traits that happen to be called
Copy, etc. in the same module override the built-in Copy trait.

r=nmatsakis

Closes rust-lang#2284
This patch adds preliminary middle-end support (liveness and trans)
for breaks and `loop`s to `loop` constructs that have labels.

while and for loops can't have labels yet.

Progress on rust-lang#2216
Fix ICE stemming from use of unique pointers in unreachable blocks.
@dbp dbp closed this Oct 22, 2012
@dbp dbp reopened this Oct 22, 2012
@dbp dbp closed this Oct 22, 2012
@dbp dbp reopened this Oct 22, 2012
@dbp dbp closed this Oct 22, 2012
RalfJung pushed a commit to RalfJung/rust that referenced this pull request Jun 15, 2024
cargo miri: add support for '--many-seeds'

to run the program / tests many times with different seeds: `cargo miri run --many-seeds` / `cargo miri test --many-seeds`.

`@rust-lang/miri` any opinion on the flag name here? Should it be `-Zmiri-many-seeds` or is `--many-seeds` fine?

Fixes rust-lang/miri#3546
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.