2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-03-07 14:33:00 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-03-07 14:33:00 +01:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-03-07 14:33:00 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-07 14:33:00 +01:00
|
|
|
|
2016-03-17 18:41:55 +01:00
|
|
|
extern crate rustc_version;
|
2018-02-08 12:38:56 +01:00
|
|
|
extern crate toml;
|
|
|
|
extern crate vergen;
|
2016-02-29 12:29:51 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
use std::{env, fs::File, io::Write, path::Path};
|
2017-12-22 14:37:39 +01:00
|
|
|
use vergen::{vergen, OutputFns};
|
2016-02-21 21:14:09 +01:00
|
|
|
|
2018-02-08 12:38:56 +01:00
|
|
|
const ERROR_MSG: &'static str = "Failed to generate metadata files";
|
2018-01-17 11:45:29 +01:00
|
|
|
|
2016-02-21 21:14:09 +01:00
|
|
|
fn main() {
|
2020-08-05 06:08:03 +02:00
|
|
|
vergen(OutputFns::all()).expect(ERROR_MSG);
|
2018-02-08 12:38:56 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let version = rustc_version::version().expect(ERROR_MSG);
|
2018-02-08 12:38:56 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
create_file(
|
|
|
|
"meta.rs",
|
|
|
|
format!(
|
|
|
|
"
|
2018-02-08 12:38:56 +01:00
|
|
|
/// Returns compiler version.
|
|
|
|
pub fn rustc_version() -> &'static str {{
|
|
|
|
\"{version}\"
|
|
|
|
}}
|
|
|
|
",
|
2020-08-05 06:08:03 +02:00
|
|
|
version = version,
|
|
|
|
),
|
|
|
|
);
|
2018-02-08 12:38:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn create_file(filename: &str, data: String) {
|
2020-08-05 06:08:03 +02:00
|
|
|
let out_dir = env::var("OUT_DIR").expect(ERROR_MSG);
|
|
|
|
let dest_path = Path::new(&out_dir).join(filename);
|
|
|
|
let mut f = File::create(&dest_path).expect(ERROR_MSG);
|
|
|
|
f.write_all(data.as_bytes()).expect(ERROR_MSG);
|
2016-02-29 12:29:51 +01:00
|
|
|
}
|