diff options
| author | Seo Sanghyeon <sanxiyn@gmail.com> | 2017-01-10 20:27:46 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-10 20:27:46 +0900 |
| commit | 833d6938e97e60a7c82fd2ee62cf0095adf01bfb (patch) | |
| tree | 21424a7ff576c3d6a06370c10184c27cc19c3281 /src | |
| parent | 20c7dbc9b484cd61ade7b2edba95a26ccc611a83 (diff) | |
| parent | 943c53bc772e102a4effa1c8388474705548c62b (diff) | |
| download | rust-833d6938e97e60a7c82fd2ee62cf0095adf01bfb.tar.gz rust-833d6938e97e60a7c82fd2ee62cf0095adf01bfb.zip | |
Rollup merge of #38841 - F001:Fix, r=steveklabnik
Update usage of rustc Add proc_macro crate type
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc/session/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 59bc001516c..104c851e057 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -1175,7 +1175,7 @@ pub fn rustc_short_optgroups() -> Vec<RustcOptGroup> { assumed.", "[KIND=]NAME"), opt::multi_s("", "crate-type", "Comma separated list of types of crates for the compiler to emit", - "[bin|lib|rlib|dylib|cdylib|staticlib]"), + "[bin|lib|rlib|dylib|cdylib|staticlib|proc-macro]"), opt::opt_s("", "crate-name", "Specify the name of the crate being built", "NAME"), opt::multi_s("", "emit", "Comma separated list of types of output for \ |
