blob: 319709b3cb0948446b30bf1836c2b3fdc8c1a656 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001# Copyright (C) 2014 Khem Raj <raj.khem@gmail.com>
2# Released under the MIT license (see COPYING.MIT for the terms)
3
4SUMMARY = "An implementation of the standard library for Linux-based systems"
5DESCRIPTION = "A new standard library to power a new generation of Linux-based devices. \
6musl is lightweight, fast, simple, free, and strives to be correct in the sense of \
7standards-conformance and safety."
8
9HOMEPAGE = "http://www.musl-libc.org/"
10LICENSE = "MIT"
11SECTION = "libs"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080012LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=8a4bb28f771c817fe57d3a7c4240e3aa"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050013
14PATH_prepend = "${STAGING_BINDIR_TOOLCHAIN}.${STAGINGCC}:"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050015
16INHIBIT_DEFAULT_DEPS = "1"
17
18STAGINGCC = "gcc-cross-initial-${TARGET_ARCH}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060019STAGINGCC_class-nativesdk = "gcc-crosssdk-initial-${SDK_SYS}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050020
21
22FILES_SOLIBSDEV = ""
23FILES_${PN} += "${libdir}/lib*${SOLIBSDEV}"
24INSANE_SKIP_${PN} = "dev-so"
25
Patrick Williamsc0f7c042017-02-23 20:41:17 -060026# Doesn't compile in MIPS16e mode due to use of hand-written
27# assembly
28MIPS_INSTRUCTION_SET = "mips"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050029
30# thumb1 is unsupported
31ARM_INSTRUCTION_SET_armv5 = "arm"
32ARM_INSTRUCTION_SET_armv4 = "arm"
33