Browse Source

Merge pull request #22 from alexcrichton/update

Prep for alpha
add-rc-path
Alex Crichton 10 years ago
parent
commit
f5c52d956e
  1. 2
      Cargo.toml
  2. 4
      src/lib.rs

2
Cargo.toml

@ -1,7 +1,7 @@
[package]
name = "gcc"
version = "0.1.3"
version = "0.1.4"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/gcc-rs"

4
src/lib.rs

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::Command;
use std::io::process::InheritFd;
use std::default::Default;
@ -28,7 +30,7 @@ impl Default for Config {
fn getenv(v: &str) -> Option<String> {
use std::os::getenv;
let r = getenv(v);
println!("{:?} = {:?}", v, r);
println!("{} = {:?}", v, r);
r
}

Loading…
Cancel
Save