Skip to content

Commit

Permalink
Turn on the new runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Aug 7, 2013
1 parent 52a37b6 commit 85aaa44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/unstable/lang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ pub fn start(main: *u8, argc: int, argv: **c_char,
use os;

unsafe {
let use_old_rt = os::getenv("RUST_NEWRT").is_none();
let use_old_rt = os::getenv("RUST_OLDRT").is_some();
if use_old_rt {
return rust_start(main as *c_void, argc as c_int, argv,
crate_map as *c_void) as int;
Expand Down

2 comments on commit 85aaa44

@brson
Copy link
Owner Author

@brson brson commented on 85aaa44 Aug 7, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors: retry

@brson
Copy link
Owner Author

@brson brson commented on 85aaa44 Aug 7, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r+ p=1243

Please sign in to comment.