We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58529d3 commit 563d01cCopy full SHA for 563d01c
README.md
@@ -19,12 +19,23 @@ svc-hook supports ARM64 Linux and FreeBSD.
19
## Build
20
21
svc-hook has no external dependencies.
22
-To build `libsvchook.so`, run the following command in the root directory:
+To build `libsvchook.so`, run the following command in the root directory on an
23
+ARM64 system:
24
25
```shell
26
make
27
```
28
29
+If you are building on x86_64 or another host architecture, provide an ARM64
30
+cross compiler via the `CC` variable:
31
+
32
+```shell
33
+make CC=aarch64-linux-gnu-gcc
34
35
+# or with clang
36
+make CC=aarch64-linux-gnu-clang
37
+```
38
39
To build a simple hook application `libsvchook_basic.so`, use:
40
41
0 commit comments