1config BR2_PACKAGE_HOST_LLD 2 bool "host lld" 3 depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS # llvm 4 depends on BR2_HOST_GCC_AT_LEAST_7 # host-llvm 5 help 6 LLD is a linker from the LLVM project that is a drop-in 7 replacement for system linkers, and runs much faster than 8 them. It also provides features that are useful for 9 toolchain developers. 10 11 https://lld.llvm.org/ 12 13comment "host lld needs host gcc >= 7" 14 depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS 15 depends on !BR2_HOST_GCC_AT_LEAST_7 16