blob: 54edfc88e52b5a30a2ead684c85a95b40974cfb6 [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 = ""
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
Andrew Geissler82c905d2020-04-13 13:39:40 -050028# Enable out of tree build
29B = "${WORKDIR}/build"
30
31do_configure[cleandirs] = "${B}"