summaryrefslogtreecommitdiffstats
path: root/dynamic-layers
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-02-23 22:09:33 -0800
committerKhem Raj <raj.khem@gmail.com>2021-03-01 11:12:14 -0800
commit1a4116592f570d0e35736ed5e59cd5e372f76c4c (patch)
treea78c135185f307e5409dd3f33600f01c54ef81e8 /dynamic-layers
parent32de0cf88de07fad392580913fe4e2f19915a021 (diff)
downloadmeta-clang-1a4116592f570d0e35736ed5e59cd5e372f76c4c.tar.gz
bcc: Disable luaJIT on ppc64
ppc64 port is not yet available, its proposed here https://github.com/LuaJIT/LuaJIT/pull/54 Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'dynamic-layers')
-rw-r--r--dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb
index 03d3236..5366db9 100644
--- a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb
+++ b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.17.0.bb
@@ -8,10 +8,14 @@ inherit cmake python3native manpages
8DEPENDS += "bison-native \ 8DEPENDS += "bison-native \
9 flex-native \ 9 flex-native \
10 elfutils \ 10 elfutils \
11 luajit \ 11 ${LUAJIT} \
12 clang \ 12 clang \
13 " 13 "
14 14
15LUAJIT ?= "luajit"
16LUAJIT_powerpc64le = ""
17LUAJIT_powerpc64 = ""
18
15RDEPENDS_${PN} += "bash python3 python3-core python3-setuptools xz" 19RDEPENDS_${PN} += "bash python3 python3-core python3-setuptools xz"
16 20
17SRC_URI = "gitsm://github.com/iovisor/bcc \ 21SRC_URI = "gitsm://github.com/iovisor/bcc \