aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2021-11-01 18:40:03 +0100
committerFelix Fietkau <nbd@nbd.name>2021-11-01 18:41:20 +0100
commit6738820bf637fd705ea7e61acf4f694e1bcda313 (patch)
tree8d69e7a4743e4eca559b8df226589ed3f5c2a893 /toolchain
parentf3a28b6bcf984dc55ec2d675ba75f0d3bc794eb9 (diff)
downloadupstream-6738820bf637fd705ea7e61acf4f694e1bcda313.tar.gz
upstream-6738820bf637fd705ea7e61acf4f694e1bcda313.tar.bz2
upstream-6738820bf637fd705ea7e61acf4f694e1bcda313.zip
build: fix bpf toolchain dependency for qosify
Add hidden symbols to fix defaults with CONFIG_DEVEL unset Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/Config.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in
index 1515135806..b8b4cfeb88 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -46,9 +46,11 @@ menuconfig TARGET_OPTIONS
bool "None"
config BPF_TOOLCHAIN_HOST
+ select USE_LLVM_HOST
bool "Use host LLVM toolchain"
config BPF_TOOLCHAIN_BUILD_LLVM
+ select USE_LLVM_BUILD
bool "Build LLVM toolchain for eBPF"
help
If enabled, a LLVM toolchain for building eBPF binaries will be built.
@@ -292,6 +294,17 @@ config GDB_PYTHON
help
Enable the python bindings for GDB to allow using python in the gdb shell.
+config HAS_BPF_TOOLCHAIN
+ bool
+
+config USE_LLVM_HOST
+ select HAS_BPF_TOOLCHAIN
+ bool
+
+config USE_LLVM_BUILD
+ select HAS_BPF_TOOLCHAIN
+ bool
+
config USE_GLIBC
default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && (arc)
bool