mirror of
https://github.com/sched-ext/scx.git
synced 2024-11-28 21:50:23 +00:00
14 lines
377 B
Rust
14 lines
377 B
Rust
|
// Copyright (c) Changwoo Min <changwoo@igalia.com>
|
||
|
//
|
||
|
// This software may be used and distributed according to the terms of the
|
||
|
// GNU General Public License version 2.
|
||
|
|
||
|
fn main() {
|
||
|
scx_utils::BpfBuilder::new()
|
||
|
.unwrap()
|
||
|
.enable_intf("src/bpf/intf.h", "bpf_intf.rs")
|
||
|
.enable_skel("src/bpf/main.bpf.c", "bpf")
|
||
|
.build()
|
||
|
.unwrap();
|
||
|
}
|