diff options
author | Felix Fietkau <nbd@nbd.name> | 2021-11-04 15:16:07 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2021-11-04 16:59:22 +0100 |
commit | 2a832b3df5990f33aa3d5944733e43bf5287475c (patch) | |
tree | 205a4a2cc0956ef685b92b1b4fc611528627a367 /toolchain | |
parent | a7c0d7c06c5b353c98f6db6b0b766d2ff3dd6887 (diff) | |
download | upstream-2a832b3df5990f33aa3d5944733e43bf5287475c.tar.gz upstream-2a832b3df5990f33aa3d5944733e43bf5287475c.tar.bz2 upstream-2a832b3df5990f33aa3d5944733e43bf5287475c.zip |
llvm-bpf: support creating a tarball in bin
This can be used for adding the toolchain to an existing tree without having
to build it from scratch.
Enable building the toolchain + tarball by default on buildbot
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index b8b4cfeb88..a7da2a1f73 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -40,6 +40,7 @@ menuconfig TARGET_OPTIONS choice BPF_TOOLCHAIN prompt "BPF toolchain" if DEVEL + default BPF_TOOLCHAIN_BUILD_LLVM if BUILDBOT default BPF_TOOLCHAIN_NONE config BPF_TOOLCHAIN_NONE @@ -302,6 +303,7 @@ config USE_LLVM_HOST bool config USE_LLVM_BUILD + default y if !DEVEL && BUILDBOT select HAS_BPF_TOOLCHAIN bool |