parisc: Add eBPF JIT compiler glue code and Makefile

Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
Helge Deller
2023-08-17 23:45:00 +02:00
parent c95e269773
commit 22de5d6262
3 changed files with 689 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# SPDX-License-Identifier: GPL-2.0-only
obj-$(CONFIG_BPF_JIT) += bpf_jit_core.o
ifeq ($(CONFIG_64BIT),y)
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp64.o
else
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o
endif