aboutsummaryrefslogtreecommitdiff
path: root/cc/src/bin/gcc-shim.rs
blob: 7fd0ea8fa84b72bbf8da4aeb92d4a91021f46514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![cfg_attr(test, allow(dead_code))]

use std::env;
use std::fs::File;
use std::io::prelude::*;
use std::path::PathBuf;

fn main() {
    let out_dir = PathBuf::from(env::var_os("GCCTEST_OUT_DIR").unwrap());
    for i in 0.. {
        let candidate = out_dir.join(format!("out{}", i));
        if candidate.exists() {
            continue;
        }
        let mut f = File::create(candidate).unwrap();
        for arg in env::args().skip(1) {
            writeln!(f, "{}", arg).unwrap();
        }

        File::create(out_dir.join("libfoo.a")).unwrap();
        break;
    }
}