mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-03 19:33:46 +01:00
Allow building imagebuilder and/or sdk with dependency on the same external toolchain as used to build the imagebuilder or sdk (so that ib and sdk may be built using an external toolchain). Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com> Original patch: https://lists.openwrt.org/pipermail/openwrt-devel/2016-January/012552.html [rebased to current main, impvove commit title] Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com> Link: https://github.com/openwrt/openwrt/pull/22089 Signed-off-by: Robert Marko <robimarko@gmail.com>
18 lines
644 B
Text
18 lines
644 B
Text
config SDK
|
|
bool "Build the OpenWrt SDK"
|
|
depends on !EXTERNAL_TOOLCHAIN || EXTERNAL_TOOLCHAIN_SDK
|
|
default BUILDBOT
|
|
help
|
|
This is essentially a stripped-down version of the buildroot
|
|
with a precompiled toolchain. It can be used to develop and
|
|
test packages for OpenWrt before including them in the buildroot
|
|
|
|
config SDK_LLVM_BPF
|
|
bool "Build the LLVM-BPF toolchain tarball"
|
|
depends on BPF_TOOLCHAIN_BUILD_LLVM
|
|
select NEED_BPF_TOOLCHAIN
|
|
default BUILDBOT
|
|
help
|
|
This is a tarball of the precompiled LLVM toolchain suitable
|
|
for unpacking into the buildroot/SDK. It is used to build packages
|
|
that ship with eBPF kernel modules
|