blob: 66468e92ff05e67178ff912eebe1d1ea53130494 [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"
Andrew Geisslerb7d28612020-07-24 16:15:54 -050012LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=b03f1cc25363d094011f8f4fd8bcfb68"
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 = ""
Patrick Williams213cb262021-08-07 19:21:33 -050017FILES:${PN} += "${libdir}/lib*${SOLIBSDEV}"
18INSANE_SKIP:${PN} = "dev-so"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050019
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
Patrick Williams213cb262021-08-07 19:21:33 -050025ARM_INSTRUCTION_SET:armv5 = "arm"
26ARM_INSTRUCTION_SET:armv4 = "arm"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050027
Andrew Geissler82c905d2020-04-13 13:39:40 -050028# Enable out of tree build
29B = "${WORKDIR}/build"
30
31do_configure[cleandirs] = "${B}"