blob: ca2f9178d2e0860a9a636c1b6721ddd2d293226d [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001include conf/distro/include/default-providers.inc
2include conf/distro/include/default-versions.inc
3include conf/distro/include/default-distrovars.inc
4include conf/distro/include/world-broken.inc
5
6TCMODE ?= "default"
7require conf/distro/include/tcmode-${TCMODE}.inc
8
9TCLIBC ?= "glibc"
10require conf/distro/include/tclibc-${TCLIBC}.inc
11
Brad Bishop37a0e4d2017-12-04 01:01:44 -050012require conf/distro/include/uninative-flags.inc
13
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014# Allow single libc distros to disable this code
15TCLIBCAPPEND ?= "-${TCLIBC}"
16TMPDIR .= "${TCLIBCAPPEND}"
17
Brad Bishop6e60e8b2018-02-01 10:27:11 -050018CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + str(d.getVar('MACHINE'))][bool(d.getVar('MACHINE'))]}${@['', '/' + str(d.getVar('SDKMACHINE'))][bool(d.getVar('SDKMACHINE'))]}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
20USER_CLASSES ?= ""
21PACKAGE_CLASSES ?= "package_ipk"
22INHERIT_BLACKLIST = "blacklist"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050023INHERIT_DISTRO ?= "debian devshell sstate license remove-libtool"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024INHERIT += "${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO} ${INHERIT_BLACKLIST}"