blob: 0683bf85ede9050318aea0322a2e814011a554b6 [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 Bishop96ff1982019-08-19 13:50:42 -040012LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=d0fe2be17bc45ff4a42ade1c13ed6340"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050013
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050014INHIBIT_DEFAULT_DEPS = "1"
15
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050016FILES_SOLIBSDEV = ""
17FILES_${PN} += "${libdir}/lib*${SOLIBSDEV}"
18INSANE_SKIP_${PN} = "dev-so"
19
Patrick Williamsc0f7c042017-02-23 20:41:17 -060020# Doesn't compile in MIPS16e mode due to use of hand-written
21# assembly
22MIPS_INSTRUCTION_SET = "mips"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023
24# thumb1 is unsupported
25ARM_INSTRUCTION_SET_armv5 = "arm"
26ARM_INSTRUCTION_SET_armv4 = "arm"
27