search for: config_klibc_zlib

Displaying 9 results from an estimated 9 matches for "config_klibc_zlib".

2019 Jan 22
1
[PATCH] fix build failure when CONFIG_KLIBC_ZLIB is not set
When CONFIG_KLIBC_ZLIB is not set, related functions shall not be called otherwise build failure is encountered: KLIBCLD usr/kinit/static/kinit usr/kinit/ramdisk_load.o: In function `load_ramdisk_compressed': /root/ldb_base/ofl/packages/klibc/usr/kinit/ramdisk_load.c:68: undefined reference to `inflateInit2_'...
2019 Jan 24
0
[klibc:master] fix build failure when CONFIG_KLIBC_ZLIB is not set
...bc.git;a=commit;h=534a04d85defc627b031906d27cd9d09a913adc4 Author: Christophe Leroy <christophe.leroy at c-s.fr> AuthorDate: Wed, 23 Jan 2019 06:16:01 +0000 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Thu, 24 Jan 2019 23:11:11 +0000 [klibc] fix build failure when CONFIG_KLIBC_ZLIB is not set When CONFIG_KLIBC_ZLIB is not set, related functions shall not be called otherwise build failure is encountered: KLIBCLD usr/kinit/static/kinit usr/kinit/ramdisk_load.o: In function `load_ramdisk_compressed': /root/ldb_base/ofl/packages/klibc/usr/kinit/ramdisk_load.c:68: undefine...
2019 Jan 23
0
[PATCH v2] fix build failure when CONFIG_KLIBC_ZLIB is not set
When CONFIG_KLIBC_ZLIB is not set, related functions shall not be called otherwise build failure is encountered: KLIBCLD usr/kinit/static/kinit usr/kinit/ramdisk_load.o: In function `load_ramdisk_compressed': /root/ldb_base/ofl/packages/klibc/usr/kinit/ramdisk_load.c:68: undefined reference to `inflateInit2_'...
2019 Feb 01
0
[ANNOUNCE] klibc 2.0.6
...b/scm/libs/klibc/klibc.git and as a tarball at: https://mirrors.kernel.org/pub/linux/libs/klibc/2.0/ This new release fixes run-time bugs in file locking on 32-bit architectures, vfork() on parisc, and various system calls on alpha. It fixes build failures with an out-of-tree build, or with CONFIG_KLIBC_ZLIB disabled. The shared library now works on ia64. This release also enables building executables and libraries with full debug information, and adds the option to install them without stripping (CONFIG_DEBUG_INFO). A git shortlog of changes since version 2.0.5 follows. Ben. Ben Hutchings (13):...
2019 Feb 01
0
[klibc:master] arm: Enable CONFIG_ARM_EABI by default
...sume the "new" system call ABI by default. Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defconfig b/defconfig index 9938e0ab..7d46de94 100644 --- a/defconfig +++ b/defconfig @@ -6,5 +6,5 @@ CONFIG_KLIBC_ZLIB=y CONFIG_REGPARM=y # ARM options # CONFIG_KLIBC_THUMB is not set -# CONFIG_AEABI is not set +CONFIG_AEABI=y # CONFIG_DEBUG_INFO is not set
2013 Dec 03
0
[PATCH] gzip: Fix typo CONFIG_KLIB_ZIP -> CONFIG_KLIBC_ZIP
...nton Blanchard <anton at samba.org> --- defconfig | 1 + usr/gzip/Kbuild | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/defconfig b/defconfig index c10a4f5..04b98e9 100644 --- a/defconfig +++ b/defconfig @@ -1,6 +1,7 @@ CONFIG_KLIBC=y CONFIG_KLIBC_ERRLIST=y CONFIG_KLIBC_ZLIB=y +# CONFIG_KLIBC_ZIP is not set # i386 option CONFIG_REGPARM=y # ARM options diff --git a/usr/gzip/Kbuild b/usr/gzip/Kbuild index 64fae04..9bbf0a4 100644 --- a/usr/gzip/Kbuild +++ b/usr/gzip/Kbuild @@ -10,8 +10,8 @@ gzip-y := gzip.o util.o unzip.o inflate.o always := gunzip zcat # Optiona...
2013 Dec 03
0
[klibc:master] gzip: Fix typo CONFIG_KLIB_ZIP -> CONFIG_KLIBC_ZIP
...H. Peter Anvin <hpa at zytor.com> --- defconfig | 1 + usr/gzip/Kbuild | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/defconfig b/defconfig index c10a4f5..04b98e9 100644 --- a/defconfig +++ b/defconfig @@ -1,6 +1,7 @@ CONFIG_KLIBC=y CONFIG_KLIBC_ERRLIST=y CONFIG_KLIBC_ZLIB=y +# CONFIG_KLIBC_ZIP is not set # i386 option CONFIG_REGPARM=y # ARM options diff --git a/usr/gzip/Kbuild b/usr/gzip/Kbuild index 64fae04..9bbf0a4 100644 --- a/usr/gzip/Kbuild +++ b/usr/gzip/Kbuild @@ -10,8 +10,8 @@ gzip-y := gzip.o util.o unzip.o inflate.o always := gunzip zcat # Optiona...
2019 Feb 01
0
[klibc:master] README.klibc: Document most of the build options
...tory. If this file does not already exist, it is +created as a copy of the "defconfig" source file. + +The configuration variables are: + +* CONFIG_KLIBC_ERRLIST (bool): Include standard error strings for + strerror(). If disabled, strerror() returns the error number as a + string. +* CONFIG_KLIBC_ZLIB (bool): Include zlib decompression functions. If + disabled, kinit can only load uncompressed ramdisk images. +* CONFIG_KLIBC_ZIP (bool): Include compression support in the gzip + command. +* CONFIG_DEBUG_INFO (bool): Install all executables and the shared + library with debug information and b...
2006 Jul 09
6
[PATCH/RFC] klibc/kbuild: use separate kbuild files for each klibc subdirectory
...o vsprint ctype/ispunct.o ctype/isspace.o ctype/isupper.o \ ctype/isxdigit.o ctype/tolower.o ctype/toupper.o -libc-$(CONFIG_KLIBC_ERRLIST) += errlist.o +klib-$(CONFIG_KLIBC_ERRLIST) += errlist.o ifeq ($(CONFIG_KLIBC_ERRLIST),y) KLIBCCFLAGS_strerror.o += -DWITH_ERRLIST endif -libc-$(CONFIG_KLIBC_ZLIB) += \ - zlib/adler32.o zlib/compress.o zlib/crc32.o zlib/gzio.o \ - zlib/uncompr.o zlib/deflate.o zlib/trees.o zlib/zutil.o \ - zlib/inflate.o zlib/infback.o zlib/inftrees.o zlib/inffast.o - -# zlib specific flag -KLIBCCFLAGS += -DDYNAMIC_CRC_TABLE +klib-$(CONFIG_KLIBC_ZLIB) += zlib/ +# arch spe...