Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | LICENSE = "GPLv2" |
| 2 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 3 | SRCREV = "4051c70c9318c837981384cbb23f3e9eb1bd0892" |
| 4 | PV = "3.2" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 5 | |
| 6 | SRC_URI = "git://sourceware.org/git/systemtap.git \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 7 | file://configure-allow-to-disable-libvirt.patch \ |
| 8 | file://x32_abi_time.patch \ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 9 | file://monitor-option.patch \ |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 10 | file://no-msgfmt-check.patch \ |
| 11 | file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \ |
| 12 | file://0001-Install-python-modules-to-correct-library-dir.patch \ |
| 13 | file://0001-buildrun-remove-quotes-around-I-include-line.patch \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 14 | file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 15 | file://0001-Fix-PR22551-by-updating-the-use-of-timers-for-the-4..patch \ |
| 16 | file://0001-Fixes-for-gcc-8.patch \ |
| 17 | file://0001-Use-sysroot-when-looking-for-the-System.map-file.patch \ |
| 18 | file://0001-debuginfo-lookup-with-sysroot-case-do-not-remove-sys.patch \ |
| 19 | file://0001-Make-sure-sysroot-paths-don-t-end-with-a-slash.patch \ |
| 20 | file://0001-sysroot-fix-short-release-r-option-handling.patch \ |
| 21 | file://0001-Delay-adding-sysroot-path-to-module-name-in-case-of-.patch \ |
| 22 | file://0001-Added-a-couple-of-small-sysroot-fixes.patch \ |
| 23 | file://0001-_stp_umodule_relocate-needs-target-file-path-not-hos.patch \ |
| 24 | file://0001-sysroot-handle-symbolic-links-with-absolute-name-rel.patch \ |
| 25 | file://0001-sysroot-fix-short-release-r-option-handling-follow-u.patch \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 26 | " |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 27 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 28 | COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64|microblazeel|mips).*-linux' |
| 29 | COMPATIBLE_HOST_libc-musl = 'null' |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 30 | |
| 31 | S = "${WORKDIR}/git" |
| 32 | |
| 33 | # systemtap can't be built without optimization, if someone tries to compile an |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 34 | # entire image as -O0, break with fatal. |
| 35 | python () { |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 36 | if bb.utils.contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x": |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 37 | bb.fatal("systemtap can't be built with -O0, using -O1 -Wno-error or -O1 instead.") |
| 38 | } |