File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -29,19 +29,39 @@ You can download the pre-built binaries from the release page [release page](htt
29
29
30
30
To build ` oryx ` :
31
31
32
- 1 . Install Rust nightly toolchain
32
+ #### 1. Install Rust nightly toolchain
33
33
34
34
```
35
35
rustup toolchain install nightly --component rust-src
36
36
```
37
37
38
- 2 . Install [ bpf-linker] ( https://github.com/aya-rs/bpf-linker )
38
+ #### 2. Install [ bpf-linker] ( https://github.com/aya-rs/bpf-linker )
39
+
40
+ ##### For ` x86_64 `
41
+
42
+ Simply run the following command:
39
43
40
44
```
41
45
cargo install bpf-linker
42
46
```
43
47
44
- 3 . Build
48
+ ##### For ` arm64 `
49
+
50
+ For Debian based distributions, make sure you have the following dependencies installed:
51
+
52
+ - ` llvm-19 `
53
+ - ` llvm-19-dev `
54
+ - ` libpolly-19-dev `
55
+
56
+ then run the following command:
57
+
58
+ ```
59
+ cargo install bpf-linker --no-default-features
60
+ ```
61
+
62
+ > Check [ bpf-linker Installation section] ( https://github.com/aya-rs/bpf-linker?tab=readme-ov-file#installation ) for more infos.
63
+
64
+ #### 3. Build
45
65
46
66
```
47
67
cargo xtask build --release
You can’t perform that action at this time.
0 commit comments