rust/src/librustc_driver
bors 94c06a1be0 Auto merge of #22026 - kmcallister:plugin, r=sfackler
```rust
#[plugin] #[no_link] extern crate bleh;
```

becomes a crate attribute

```rust
#![plugin(bleh)]
```

The feature gate is still required.

It's almost never correct to link a plugin into the resulting library / executable, because it will bring all of libsyntax and librustc with it. However if you really want this behavior, you can get it with a separate `extern crate` item in addition to the `plugin` attribute.

Fixes #21043.
Fixes #20769.

[breaking-change]
2015-02-10 11:15:52 +00:00
..
driver.rs Review changes 2015-02-09 19:58:49 +13:00
lib.rs Auto merge of #22026 - kmcallister:plugin, r=sfackler 2015-02-10 11:15:52 +00:00
pretty.rs cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
test.rs Feature-gate #![no_std] 2015-02-07 10:49:58 -08:00