Skip to content

Commit 64931b9

Browse files
committed
---
yaml --- r: 32736 b: refs/heads/dist-snap c: 1b5efaa h: refs/heads/master v: v3
1 parent 7f5a725 commit 64931b9

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10-
refs/heads/dist-snap: e14a0eec23b49f51a32ea254f2749f2f08386f5b
10+
refs/heads/dist-snap: 1b5efaac27408d958a0013c040ce269ccb5c142c
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/dist-snap/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}; }

branches/dist-snap/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)