scx_bpf_compat 1.0.16

BPF compatibility testing utilities for sched_ext
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// 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.

fn main() {
    scx_cargo::BpfBuilder::new()
        .unwrap()
        .enable_skel("src/bpf/main.bpf.c", "bpf")
        .compile_link_gen()
        .unwrap();
}