Skip to content

Commit 1b5efaa

Browse files
committed
syntax: Pass the correct crate_cfg to the syntax expander
1 parent e14a0ee commit 1b5efaa

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/rustc/driver/driver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ fn compile_upto(sess: session, cfg: ast::crate_cfg,
173173
front::test::modify_for_testing(sess, crate));
174174

175175
crate = time(time_passes, ~"expansion", ||
176-
syntax::ext::expand::expand_crate(sess.parse_sess, sess.opts.cfg,
176+
syntax::ext::expand::expand_crate(sess.parse_sess, cfg,
177177
crate));
178178

179179
if upto == cu_expand { return {crate: crate, tcx: None}; }

src/rustc/driver/session.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ type options =
144144
addl_lib_search_paths: ~[Path],
145145
maybe_sysroot: Option<Path>,
146146
target_triple: ~str,
147+
// User-specified cfg meta items. The compiler itself will add additional
148+
// items to the crate config, and during parsing the entire crate config
149+
// will be added to the crate AST node. This should not be used for
150+
// anything except building the full crate config prior to parsing.
147151
cfg: ast::crate_cfg,
148152
binary: ~str,
149153
test: bool,

0 commit comments

Comments
 (0)