scx_utils 1.0.7

Utilities for sched_ext schedulers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2.

use vergen::EmitBuilder;
include!("src/builder.rs");

fn main() {
    Builder::new().build();
    EmitBuilder::builder()
        .git_sha(true)
        .git_dirty(true)
        .cargo_target_triple()
        .emit()
        .unwrap();
}