mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
Boost is an optional dependency but avoid build non-determinism by adding it as DEPENDS. It is only for the shared pointer types so can be disabled explicitly if required. Turn sqlite into a PACKAGECONFIG. Add a patch for the "monitor" feature to control the optional dependencies on ncurses and json-c. Previously this was enabled for target only but enable it everwhere now that json-c is available for native/nativesdk. Of course all of this was predicated about systemtap needing systemtap-native to be built, but it turns out that this dependency is due to oe-core 507bd2 which adds systemtap-native as DEPENDS for convenience. Remove this dependency, if the user wants systemtap-native then they can build it explicitly. (From OE-Core rev: fb9dc1cf7a2d6d5e22beb68f17b4c9c8d1136e37) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
880 B
PHP
25 lines
880 B
PHP
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
SRCREV = "616ec7a0b916df7785d911b824c3df6eb022b213"
|
|
PV = "3.0"
|
|
|
|
SRC_URI = "git://sourceware.org/git/systemtap.git \
|
|
file://obsolete_automake_macros.patch \
|
|
file://system_map_location.patch \
|
|
file://configure-allow-to-disable-libvirt.patch \
|
|
file://x32_abi_time.patch \
|
|
file://monitor-option.patch \
|
|
"
|
|
|
|
# systemtap doesn't support mips
|
|
COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64).*-linux'
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
# systemtap can't be built without optimization, if someone tries to compile an
|
|
# entire image as -O0, break with fatal.
|
|
python () {
|
|
if bb.utils.contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x":
|
|
bb.fatal("systemtap can't be built with -O0, using -O1 -Wno-error or -O1 instead.")
|
|
}
|