Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | DESCRIPTION = "klibc is intended to be a minimalistic libc subset for \ |
| 2 | use with initramfs. It is deliberately written for small size, \ |
| 3 | minimal entaglement, and portability, not speed." |
| 4 | SECTION = "libs" |
| 5 | LICENSE = "BSD-3-Clause & GPL-2.0 & MIT & Zlib" |
| 6 | LIC_FILES_CHKSUM = "file://usr/klibc/LICENSE;md5=d75181f10e998c21eb147f6d2e43ce8b" |
| 7 | DEPENDS = "linux-libc-headers perl-native" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 8 | SRCREV = "22b36d1ae34416bc48869619cbb0cccb2070f48f" |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 9 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 10 | SRC_URI = "git://git.kernel.org/pub/scm/libs/klibc/klibc.git \ |
| 11 | ${ARMPATCHES} \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 12 | file://klcc-consider-sysroot.patch \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 13 | file://klcc-cross-accept-clang-options.patch \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 14 | file://0001-dash-Specify-format-string-in-fmtstr.patch \ |
| 15 | file://0001-Define-in_-structs-for-non-glibc-system-libs.patch \ |
| 16 | file://0001-include-linux-sysinfo.h-directly.patch \ |
| 17 | file://0001-mkfifo-Implement-mkfifo.patch \ |
| 18 | file://0001-always-use-bfd-linker.patch \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 19 | file://0001-Kbuild.klibc-Use-print-libgcc-file-name-instead-of-p.patch \ |
| 20 | file://0001-Kbuild.klibc-Add-path-to-compiler-headers-via-isyste.patch \ |
| 21 | file://0001-arm-Do-not-set-a-fallback-march-and-mtune.patch \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 22 | file://0001-klibc_2.0.4-add-kexec_file_load-syscall.patch \ |
| 23 | file://0001-klibc-add-getrandom-syscall.patch \ |
| 24 | file://0001-klibc-Kbuild-Accept-EXTRA_KLIBCAFLAGS.patch \ |
Andrew Geissler | 1548c07 | 2019-02-22 16:03:50 -0600 | [diff] [blame] | 25 | file://0001-Define-ulocked_-fgets-fread-fwrite-aliases.patch \ |
Brad Bishop | c1d3433 | 2019-09-09 14:56:00 -0400 | [diff] [blame] | 26 | file://0001-Fix-missing-include-in-sys-mman.h.patch \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 27 | " |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 28 | |
| 29 | ARMPATCHES ?= "" |
| 30 | |
| 31 | ARMPATCHES_arm = "file://klibc-config-eabi.patch \ |
| 32 | file://armv4-fix-v4bx.patch \ |
| 33 | " |
| 34 | |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 35 | S = "${WORKDIR}/git" |
| 36 | |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 37 | OPTFLAGS = "${TUNE_CCARGS} -Os" |
Brad Bishop | 90ca747 | 2019-08-20 09:15:15 -0400 | [diff] [blame] | 38 | OPTFLAGS_append_toolchain-clang = " -fno-builtin-bcmp" |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 39 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 40 | PARALLEL_MAKE = "" |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 41 | EXTRA_OEMAKE = "'KLIBCARCH=${KLIBC_ARCH}' \ |
| 42 | 'CROSS_COMPILE=${TARGET_PREFIX}' \ |
| 43 | 'KLIBCKERNELSRC=${STAGING_DIR_TARGET}${exec_prefix}' \ |
| 44 | 'KLIBCLIBGCC=${STAGING_DIR_TARGET}${libdir}/${TARGET_SYS}/*/libgcc.a' \ |
| 45 | 'prefix=${exec_prefix}' \ |
| 46 | 'INSTALLROOT=${D}' \ |
Patrick Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 47 | 'INSTALLDIR=${libdir}/klibc' \ |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 48 | 'SHLIBDIR=${libdir}' \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 49 | '${KLIBCTHUMB}' \ |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 50 | 'KLIBCOPTFLAGS=${OPTFLAGS}' \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 51 | V=1 \ |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 52 | " |
| 53 | |
| 54 | export FIX_ARMV4_EABI_BX = "${FIX_V4BX}" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 55 | KLIBCTHUMB = "${@['CONFIG_KLIBC_THUMB=n', 'CONFIG_KLIBC_THUMB=y'][(d.getVar('ARM_INSTRUCTION_SET') == 'thumb')]}" |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 56 | |
| 57 | do_configure () { |
| 58 | ln -sf "${STAGING_DIR_TARGET}${exec_prefix}" linux |
| 59 | } |
| 60 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 61 | do_compile_prepend_toolchain-clang() { |
| 62 | sed -i -e 's#$(KLIBCROSS)gcc#$(KLIBCROSS)clang#g' ${S}/Makefile |
| 63 | } |
| 64 | |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 65 | INHIBIT_PACKAGE_STRIP = "1" |
| 66 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" |
| 67 | INSANE_SKIP_${PN} = "already-stripped" |
| 68 | INSANE_SKIP_libklibc-dev = "dev-elf" |
| 69 | KLIBC_ARCH = "${TARGET_ARCH}" |
| 70 | KLIBC_ARCH_aarch64 = "arm64" |
| 71 | KLIBC_ARCH_armeb = "arm" |
| 72 | KLIBC_ARCH_mipsel = "mips" |
Andrew Geissler | 1548c07 | 2019-02-22 16:03:50 -0600 | [diff] [blame] | 73 | KLIBC_ARCH_mips64el = "mips64" |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 74 | KLIBC_ARCH_x86 = "i386" |
| 75 | KLIBC_ARCH_x86-64 = "x86_64" |
| 76 | KLIBC_ARCH_powerpc = "ppc" |
| 77 | KLIBC_ARCH_powerpc64 = "ppc64" |
| 78 | THIS_LIBKLIBC = "libklibc (= ${PV}-${PR})" |