diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-01-26 20:30:41 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-01-26 20:30:46 -0800 |
| commit | f0ba69a96fd765290f62c7bde251596857a00077 (patch) | |
| tree | 6e2711d7a60dc2530fff214875692ae627216194 /src/comp/driver | |
| parent | a3beeac4ec1e86f14b8030a232df1d4cc3163a55 (diff) | |
| download | rust-f0ba69a96fd765290f62c7bde251596857a00077.tar.gz rust-f0ba69a96fd765290f62c7bde251596857a00077.zip | |
Remove the --no-core command-line option
It is superceeded by the #[no_core] attribute
Diffstat (limited to 'src/comp/driver')
| -rw-r--r-- | src/comp/driver/driver.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/comp/driver/driver.rs b/src/comp/driver/driver.rs index 1b57c627455..00d5a76929e 100644 --- a/src/comp/driver/driver.rs +++ b/src/comp/driver/driver.rs @@ -494,9 +494,7 @@ fn opts() -> [getopts::opt] { optmulti("cfg"), optflag("test"), optflag("lib"), optflag("bin"), optflag("static"), optflag("gc"), optflag("no-asm-comments"), - optflag("warn-unused-imports"), - // FIXME: Transitional. Please remove - optflag("no-core")]; + optflag("warn-unused-imports")]; } type output_filenames = @{out_filename: str, obj_filename:str}; |
