initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
config BR2_PACKAGE_QLIBC
|
||||
bool "qlibc"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on !BR2_STATIC_LIBS
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
help
|
||||
qLibc is currently one of the most functionally complete
|
||||
public licensed C/C++ libraries. The C/C++ library which
|
||||
includes all kinds of containers and general library
|
||||
routines. It provides ready-made set of common container
|
||||
APIs with consistant API look.
|
||||
|
||||
https://github.com/wolkykim/qlibc
|
||||
|
||||
comment "qlibc needs a toolchain w/ threads, wchar, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 e195c97453c260acea4421146ba992d9a4d89732eac345b3765c43cc3326d2ad qlibc-2.4.5.tar.gz
|
||||
sha256 7c9d03656af4c0acf0a35e29459086498dd64080eac6d2945bc1c064aaf18132 LICENSE
|
||||
@@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# qlibc
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QLIBC_VERSION = 2.4.5
|
||||
QLIBC_SITE = $(call github,wolkykim,qlibc,v$(QLIBC_VERSION))
|
||||
QLIBC_LICENSE = BSD-2-Clause
|
||||
QLIBC_LICENSE_FILES = LICENSE
|
||||
|
||||
QLIBC_INSTALL_STAGING = YES
|
||||
QLIBC_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
||||
|
||||
# The configure.ac checks for these use AC_CHECK_FILE() which doesn't
|
||||
# work for cross-compilation. If someone wants to enable the support
|
||||
# for OpenSSL or MySQL, some changes to the configure.ac will be
|
||||
# needed.
|
||||
QLIBC_CONF_OPTS = --without-mysql --without-openssl
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user