diff options
Diffstat (limited to 'meta-oe/recipes-kernel/ktap/ktap.inc')
-rw-r--r-- | meta-oe/recipes-kernel/ktap/ktap.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta-oe/recipes-kernel/ktap/ktap.inc b/meta-oe/recipes-kernel/ktap/ktap.inc index 2c94a08d6..e2e498f9f 100644 --- a/meta-oe/recipes-kernel/ktap/ktap.inc +++ b/meta-oe/recipes-kernel/ktap/ktap.inc | |||
@@ -11,4 +11,16 @@ SRC_URI = "git://github.com/ktap/ktap.git" | |||
11 | S = "${WORKDIR}/git" | 11 | S = "${WORKDIR}/git" |
12 | 12 | ||
13 | # Package config is abused as a general compile time configuration tool. | 13 | # Package config is abused as a general compile time configuration tool. |
14 | |||
15 | # Only supports x86_64 for now!. Needs to be enabled for ktap-module too. | ||
14 | PACKAGECONFIG[ffi] = "" | 16 | PACKAGECONFIG[ffi] = "" |
17 | |||
18 | # Needed to resolve symbols in DSO and for sdt | ||
19 | PACKAGECONFIG[libelf] = ",,elfutils" | ||
20 | |||
21 | PACKAGECONFIG ?= "libelf" | ||
22 | |||
23 | EXTRA_OEMAKE = " \ | ||
24 | ${@base_contains('PACKAGECONFIG', 'libelf', '', 'NO_LIBELF=1', d)} \ | ||
25 | ${@base_contains('PACKAGECONFIG', 'ffi', 'FFI=1', '', d)} \ | ||
26 | " | ||