blob: 56fa51d61e8e3d07d9ac98ca53569ca7ad471e5d [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001LICENSE = "GPLv2"
2LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
Andrew Geissler635e0e42020-08-21 15:58:33 -05003SRCREV = "82b8e1a07a31bf37ed05d6ebc5162b054c0be9fd"
Andrew Geissler475cb722020-07-10 16:00:51 -05004PV = "4.3"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005
6SRC_URI = "git://sourceware.org/git/systemtap.git \
Brad Bishop37a0e4d2017-12-04 01:01:44 -05007 file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \
8 file://0001-Install-python-modules-to-correct-library-dir.patch \
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009 file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch \
10 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011
Brad Bishop316dfdd2018-06-25 12:45:53 -040012COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64|microblazeel|mips).*-linux'
13COMPATIBLE_HOST_libc-musl = 'null'
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
15S = "${WORKDIR}/git"
16
17# systemtap can't be built without optimization, if someone tries to compile an
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050018# entire image as -O0, break with fatal.
19python () {
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020 if bb.utils.contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x":
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050021 bb.fatal("systemtap can't be built with -O0, using -O1 -Wno-error or -O1 instead.")
22}